@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
    --verde: #00f526;
    --negro: #050505;
    --gris: #f4f6f4;
    --borde: #dfe6df;
    --sombra: 0 12px 32px rgba(0, 0, 0, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: Poppins, sans-serif;
    color: #171717;
    background: var(--gris)
}

img {
    display: block;
    max-width: 100%
}

a {
    text-decoration: none
}

button,
input {
    font: inherit
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--negro);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .35)
}

.header__contenedor {
    width: min(1400px, 100%);
    min-height: 88px;
    margin: auto;
    padding: 10px 4%;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 26px
}

.logo img {
    width: 66px;
    height: 66px;
    object-fit: contain
}

.menu {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 3vw, 42px)
}

.menu a {
    color: var(--verde);
    font-weight: 800
}

.redes,
.footer__redes {
    display: flex;
    gap: 12px
}

.redes a,
.footer__redes a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 245, 38, .45);
    border-radius: 50%;
    color: var(--verde);
    font-size: 20px
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--verde);
    border-radius: 10px;
    color: var(--verde);
    background: transparent
}

.hero {
    min-height: 520px;
    padding: 90px 20px;
    display: grid;
    place-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, .34), rgba(0, 0, 0, .82)), url('/img/fondo-manuales.jpg') center/cover no-repeat;
    background-color: #000
}

.hero__contenido {
    width: min(920px, 100%)
}

.hero__etiqueta {
    color: var(--verde);
    font-weight: 900;
    letter-spacing: .14em
}

.hero h1 {
    margin: 12px 0 0;
    font-size: clamp(44px, 8vw, 92px);
    line-height: 1;
    text-transform: uppercase
}

.hero p {
    max-width: 760px;
    margin: 24px auto 32px;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7
}

.boton {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 900
}

.boton--principal {
    color: #000;
    background: var(--verde)
}

.biblioteca {
    padding: 80px 20px
}

.seccion-titulo,
.ayuda__titulo {
    text-align: center
}

.seccion-titulo {
    width: min(900px, 100%);
    margin: 0 auto 38px
}

.seccion-titulo span,
.ayuda__titulo span {
    color: #00ae1b;
    font-weight: 900;
    letter-spacing: .16em
}

.seccion-titulo h2,
.ayuda__titulo h2 {
    margin: 8px 0 12px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
    text-transform: uppercase
}

.seccion-titulo p {
    color: #555
}

.herramientas {
    width: min(1240px, 100%);
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 18px
}

.buscador {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border: 1px solid var(--borde);
    border-radius: 12px;
    background: #fff
}

.buscador input {
    width: 100%;
    border: 0;
    outline: 0
}

.filtros {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px
}

.filtro {
    padding: 10px 14px;
    border: 1px solid #cbd5cb;
    border-radius: 999px;
    background: #fff;
    font-weight: 800
}

.filtro.activo,
.filtro:hover {
    border-color: var(--verde);
    background: var(--verde)
}

.manuales-grid {
    width: min(1240px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px
}

.manual {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--borde);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--sombra)
}

.manual.oculto {
    display: none
}

.manual__imagen {
    position: relative;
    aspect-ratio: 4/3;
    padding: 12px;
    display: grid;
    place-items: center;
    background: #f8faf8
}

.manual__imagen img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.manual__etiqueta {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--verde);
    font-size: 12px;
    font-weight: 900
}

.manual__contenido {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px
}

.manual__anio {
    margin: 0 0 5px;
    color: #00a91a;
    font-size: 13px;
    font-weight: 900
}

.manual__contenido h3 {
    margin: 0 0 10px;
    font-size: 21px
}

.manual__descripcion {
    margin: 0 0 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.65
}

.manual__acciones {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.boton-manual {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 900
}

.boton-manual--ver {
    color: #fff;
    background: #111
}

.boton-manual--descargar {
    color: #000;
    background: var(--verde)
}

.sin-resultados {
    display: none;
    width: min(720px, 100%);
    margin: 35px auto 0;
    padding: 30px;
    text-align: center;
    background: #fff
}

.sin-resultados.visible {
    display: block
}

.ayuda {
    padding: 75px 20px;
    background: #111
}

.ayuda__titulo h2 {
    color: #fff
}

.pasos {
    width: min(1180px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.pasos article {
    padding: 26px;
    border: 1px solid rgba(0, 245, 38, .35);
    border-radius: 16px;
    color: #fff;
    background: #080808
}

.pasos i,
.pasos h3 {
    color: var(--verde)
}

.pasos p {
    color: #ccc
}

.footer {
    padding: 42px 20px 20px;
    color: #fff;
    background: #000
}

.footer__contenido {
    width: min(1180px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px
}

.footer__contenido>img {
    width: 76px;
    height: 76px;
    object-fit: contain
}

.footer h2 {
    margin: 0;
    color: var(--verde)
}

.footer p {
    color: #ccc
}

.footer__copy {
    margin-top: 28px !important;
    padding-top: 18px;
    border-top: 1px solid #262626;
    text-align: center;
    font-size: 13px
}

@media(max-width:1080px) {
    .manuales-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:850px) {
    .header__contenedor {
        display: flex;
        flex-wrap: wrap;
        min-height: 76px;
        padding: 9px 16px
    }

    .logo img {
        width: 56px;
        height: 56px
    }

    .menu-btn {
        display: grid;
        place-items: center;
        margin-left: auto
    }

    .menu {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        gap: 0
    }

    .menu.abierto {
        display: flex
    }

    .menu a {
        padding: 12px;
        text-align: center
    }

    .redes {
        order: 5;
        display: none;
        width: 100%;
        justify-content: center
    }

    .menu.abierto+.redes {
        display: flex
    }

    .hero {
        min-height: 0;
        padding: 70px 16px;
        background: linear-gradient(rgba(0, 0, 0, .42), rgba(0, 0, 0, .84)), url('/img/fondo-manuales.jpg') center top/100% auto no-repeat;
        background-color: #000
    }

    .herramientas {
        grid-template-columns: 1fr
    }

    .filtros {
        justify-content: center
    }

    .manuales-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .pasos {
        grid-template-columns: 1fr
    }
}

@media(max-width:560px) {
    .biblioteca {
        padding: 58px 14px
    }

    .manuales-grid {
        grid-template-columns: 1fr
    }

    .manual {
        max-width: 420px;
        margin: auto
    }

    .manual__acciones {
        grid-template-columns: 1fr
    }

    .footer__contenido {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 58px)
    }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap');

:root {
    --v: #07ff1c;
    --n: #050505;
    --g: #f4f4f4;
    --b: #fff
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: Poppins, sans-serif;
    background: var(--g);
    color: #171717
}

img {
    display: block;
    max-width: 100%
}

a {
    text-decoration: none
}

.contenedor {
    width: min(1200px, calc(100% - 34px));
    margin: auto
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000
}

.header__container {
    min-height: 82px;
    padding: 10px 24px;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 22px
}

.logo img {
    width: 62px;
    height: 62px;
    object-fit: contain
}

.menu {
    display: flex;
    justify-content: center;
    gap: 30px
}

.menu a,
.redes a {
    color: var(--v);
    font-weight: 800
}

.redes {
    display: flex;
    gap: 15px
}

.redes a {
    font-size: 22px
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--v);
    border-radius: 10px;
    color: var(--v);
    background: transparent
}

.hero-marca {
    padding: 70px 18px;
    text-align: center;
    color: #fff;
    background:url(/img/fond.png)
}

.hero-marca__logo {
    width: 130px;
    height: 90px;
    margin: 0 auto 16px;
    object-fit: contain
}

.hero-marca h1 {
    margin: 0;
    color: var(--v);
    font-size: clamp(40px, 7vw, 78px)
}

.hero-marca p {
    color: #ddd
}

.catalogo {
    padding: 70px 0
}

.catalogo__titulo {
    text-align: center;
    margin-bottom: 32px
}

.catalogo__titulo span {
    color: #00b91b;
    font-weight: 900;
    letter-spacing: 2px
}

.catalogo__titulo h2 {
    margin: 6px 0;
    font-size: clamp(30px, 5vw, 52px)
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px
}

.producto {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dfe5df;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .12)
}

.producto__imagen {
    aspect-ratio: 1/1;
    padding: 14px;
    display: grid;
    place-items: center;
    background: #f8f8f8
}

.producto__imagen img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.producto__contenido {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px
}

.producto__contenido h3 {
    margin: 0 0 8px;
    font-size: 19px
}

.producto__contenido p {
    margin: 0 0 18px;
    color: #666;
    line-height: 1.6;
    font-size: 14px
}

.producto__precio {
    margin-top: auto;
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 900
}

.comprar {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    color: #000;
    background: var(--v);
    font-weight: 900
}

.volver {
    display: inline-flex;
    margin-bottom: 24px;
    color: #111;
    font-weight: 800;
    gap: 8px
}

.footer {
    padding: 12px 18px;
    text-align: center;
    color: #ccc;
    background: #000
}

.footer strong {
    color: var(--v)
}

@media(max-width:1050px) {
    .productos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

@media(max-width:760px) {
    .header__container {
        display: flex;
        flex-wrap: wrap;
        padding: 9px 14px
    }

    .logo img {
        width: 52px;
        height: 52px
    }

    .menu-btn {
        display: grid;
        place-items: center;
        margin-left: auto
    }

    .menu {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        gap: 0
    }

    .menu.abierto {
        display: flex
    }

    .menu a {
        padding: 12px;
        text-align: center
    }

    .redes {
        display: none
    }

    .productos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px
    }
}

@media(max-width:480px) {
    .productos-grid {
        grid-template-columns: 1fr
    }

    .producto {
        max-width: 420px;
        width: 100%;
        margin: auto
    }
}

 .descarga-protegida {
      margin-top: 16px;
    }

    .descarga-protegida label {
      display: block;
      margin-bottom: 7px;
      font-size: 14px;
      font-weight: 700;
    }

    .password-wrap {
      position: relative;
      margin-bottom: 10px;
    }

    .password-wrap input {
      box-sizing: border-box;
      width: 100%;
      min-height: 45px;
      padding: 10px 45px 10px 13px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      outline: none;
      font: inherit;
    }

    .password-wrap input:focus {
      border-color: #111827;
      box-shadow: 0 0 0 2px rgba(17, 24, 39, .08);
    }

    #mostrarPassword {
      position: absolute;
      top: 50%;
      right: 4px;
      transform: translateY(-50%);
      width: 38px;
      height: 38px;
      border: 0;
      background: transparent;
      color: #666;
      cursor: pointer;
    }

    .btn-descarga {
      width: 100%;
      border: 0;
      cursor: pointer;
      text-align: center;
    }

    .mensaje-descarga {
      min-height: 18px;
      margin: 8px 0 0;
      font-size: 13px;
      font-weight: 700;
    }

    .mensaje-descarga.error {
      color: #b91c1c;
    }

    .mensaje-descarga.ok {
      color: #15803d;
    }

    .producto__imagen img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 16/9;
      object-fit: cover;
    }
    .btn-descarga{
    width:100%;
    padding:15px;
    border:none;
    border-radius:8px;
    background: #07ff1c;
    color:#000000;
    font-weight:bold;
    cursor:pointer;
}

 .modal-pass {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.75);
            z-index: 10000;
            justify-content: center;
            align-items: center;
        }
        .modal-pass__caja {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            max-width: 350px;
            width: 90%;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            font-family: inherit;
        }
        .modal-pass__titulo {
            margin: 0 0 10px 0;
            color: #1a1a1a;
            font-size: 1.2rem;
        }
        .modal-pass__input {
            width: 100%;
            padding: 10px;
            margin-top: 10px;
            border: 2px solid #ddd;
            border-radius: 6px;
            box-sizing: border-box;
            outline: none;
            font-size: 1rem;
        }
        .modal-pass__input:focus {
            border-color: #007bff;
        }
        .modal-pass__error {
            color: #dc3545;
            font-size: 0.85rem;
            margin-top: 8px;
            display: none;
            font-weight: bold;
        }
        .modal-pass__acciones {
            margin-top: 15px;
            display: flex;
            gap: 10px;
        }
        .modal-pass__btn {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
        }
        .modal-pass__btn--cancelar { background: #e0e0e0; color: #333; }
        .modal-pass__btn--confirmar { background: #007bff; color: #fff; }