* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
}

header {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    border-bottom: 1px solid #eeeeee;
}

header h1 {
    font-size: 32px;
    letter-spacing: 6px;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    text-transform: uppercase;
}

main {
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 7%;
    gap: 50px;
}

.hero-texto {
    width: 45%;
}

.hero-texto h2 {
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-texto p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-imagen {
    width: 50%;
}

.hero-imagen img {
    width: 100%;
    display: block;
}
button {
    background-color: black;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
}
nav a {
    position: relative;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.5;
}

button {
    transition: all 0.3s ease;
}

button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    header {
        padding: 0 5%;
    }

    nav {
        gap: 15px;
    }

    nav a {
        font-size: 11px;
    }

    main {
        flex-direction: column;
        padding: 40px 5%;
        text-align: center;
    }

    .hero-texto {
        width: 100%;
    }

    .hero-texto h2 {
        font-size: 42px;
    }

    .hero-imagen {
        width: 100%;
        margin-top: 40px;
    }
}.coleccion {
    padding: 100px 7%;
    background-color: #f7f7f7;
    text-align: center;
}

.coleccion-titulo p {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.coleccion-titulo h2 {
    font-size: 42px;
    margin-bottom: 50px;
}

.productos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 45px;
}

.producto {
    background-color: white;
    padding: 25px;
}

.producto img {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.producto h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.producto p {
    font-size: 14px;
    color: #666666;
}

.ver-todos {
    color: black;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.ver-todos:hover {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .productos {
        grid-template-columns: 1fr;
    }

    .coleccion-titulo h2 {
        font-size: 32px;
    }
}.nosotros {
    padding: 120px 7%;
    background-color: white;
}

.nosotros-contenido {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.mini-titulo {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.nosotros h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.nosotros-texto {
    font-size: 18px;
    line-height: 1.7;
    color: #444444;
}.whatsapp {
    background-color: #111111;
    color: white;
    text-align: center;
    padding: 110px 7%;
}

.whatsapp h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.whatsapp > p:not(.mini-titulo) {
    font-size: 17px;
    margin-bottom: 35px;
    color: #cccccc;
}

.boton-whatsapp {
    display: inline-block;
    background-color: white;
    color: black;
    text-decoration: none;
    padding: 18px 32px;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.boton-whatsapp:hover {
    background-color: #eeeeee;
    transform: translateY(-2px);
}.footer {
    background-color: white;
    color: black;
    text-align: center;
    padding: 70px 7% 35px;
    border-top: 1px solid #eeeeee;
}

.footer h2 {
    font-size: 28px;
    letter-spacing: 6px;
    margin-bottom: 15px;
}

.footer > p {
    font-size: 14px;
    margin-bottom: 25px;
}

.footer-redes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
}

.footer-redes a {
    text-decoration: none;
    color: black;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-redes a:hover {
    opacity: 0.5;
}

.footer .copyright {
    font-size: 11px;
    color: #777777;
    margin-bottom: 0;
}.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 120px;
    height: auto;
    display: block;
}/* AJUSTES FINALES DE PORTADA */

main {
    min-height: 570px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.hero-texto h2 {
    font-size: 68px;
    letter-spacing: -2px;
}

.hero-texto p {
    margin-top: 15px;
    margin-bottom: 30px;
}

.hero-imagen img {
    transform: scale(1.08);
}

.hero-texto button {
    border: 1px solid black;
}

.hero-texto button:hover {
    background-color: #dfff00;
    color: black;
    border-color: #dfff00;
}.boton-coleccion {
    display: inline-block;
    background-color: black;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    font-size: 13px;
    letter-spacing: 2px;
    border: 1px solid black;
    transition: all 0.3s ease;
}

.boton-coleccion:hover {
    background-color: #dfff00;
    color: black;
    border-color: #dfff00;
}

html {
    scroll-behavior: smooth;
}.boton-producto {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 24px;
    background-color: black;
    color: white;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    border: 1px solid black;
    transition: all 0.3s ease;
}

.boton-producto:hover {
    background-color: #dfff00;
    color: black;
    border-color: #dfff00;
}/* MEJORA VISUAL DE PRODUCTOS */

.producto {
    position: relative;
    background-color: white;
    padding: 25px 25px 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.producto img {
    transition: transform 0.4s ease;
}

.producto:hover img {
    transform: scale(1.04);
}

.producto h3 {
    margin-top: 5px;
    font-size: 17px;
    letter-spacing: 1px;
}

.producto p {
    margin-top: 7px;
}

.boton-producto {
    min-width: 130px;
}@media (max-width: 768px) {

    header {
        height: auto;
        padding: 20px 5%;
        flex-direction: column;
        gap: 18px;
    }

    .logo img {
        width: 105px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 20px;
    }

    nav a {
        font-size: 11px;
    }

    main {
        min-height: auto;
        flex-direction: column;
        text-align: center;
        padding: 55px 5% 35px;
        gap: 35px;
    }

    .hero-texto {
        width: 100%;
    }

    .hero-texto h2 {
        font-size: 44px;
        letter-spacing: -1px;
    }

    .hero-imagen {
        width: 100%;
    }

    .hero-imagen img {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }

    .coleccion {
        padding: 75px 5%;
    }

    .productos {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .nosotros {
        padding: 80px 6%;
    }

    .nosotros h2 {
        font-size: 36px;
    }

    .nosotros-texto {
        font-size: 16px;
    }

    .whatsapp {
        padding: 80px 6%;
    }

    .whatsapp h2 {
        font-size: 36px;
    }

    .footer-redes {
        flex-direction: column;
        gap: 16px;
    }
}/* PALETA OFICIAL MABI */

:root {
    --mabi-lima: #C6FF00;
    --mabi-negro: #111111;
    --mabi-blanco: #FFFFFF;
    --mabi-marfil: #F7F6F2;
    --mabi-arena: #D8CBB8;
    --mabi-grafito: #3A3A3A;
}

/* Fondo general */

body {
    background-color: var(--mabi-blanco);
    color: var(--mabi-negro);
}

/* Colección */

.coleccion {
    background-color: var(--mabi-marfil);
}

/* Botones principales */

.boton-coleccion:hover,
.boton-producto:hover {
    background-color: var(--mabi-lima);
    border-color: var(--mabi-lima);
    color: var(--mabi-negro);
}

/* Sección WhatsApp */

.whatsapp {
    background-color: var(--mabi-negro);
}

/* Footer */

.footer {
    background-color: var(--mabi-blanco);
}

/* Detalle verde en títulos pequeños */

.mini-titulo,
.coleccion-titulo > p {
    color: var(--mabi-grafito);
}/* TIPOGRAFÍA MABI */

body {
    font-family: "Space Grotesk", sans-serif;
}

button,
a {
    font-family: "Space Grotesk", sans-serif;
}/* PORTADA EDITORIAL */

.hero-imagen {
    width: 46%;
    height: 540px;
    overflow: hidden;
}

.hero-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
}

.hero-texto {
    width: 46%;
}

.hero-texto h2 {
    max-width: 520px;
}/* HERO MABI - SPLIT SCREEN */

main {
    min-height: 620px;
    padding: 0;
    gap: 0;
    overflow: hidden;
}

.hero-texto {
    width: 50%;
    padding: 80px 6.5%;
}

.hero-imagen {
    width: 50%;
    height: 620px;
    overflow: hidden;
}

.hero-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    transform: none;
}/* AJUSTE FINAL HERO DESKTOP */

main {
    min-height: calc(100vh - 72px);
    height: calc(100vh - 72px);
}

.hero-imagen {
    height: 100%;
}

.hero-imagen img {
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
}/* COLECCIÓN MABI - ESTILO EDITORIAL */

.coleccion {
    padding: 100px 5%;
}

.coleccion-titulo {
    margin-bottom: 55px;
}

.coleccion-titulo h2 {
    font-size: 46px;
    letter-spacing: -1.5px;
    margin-top: 8px;
}

.productos {
    gap: 25px;
}

.producto {
    padding: 0 0 30px;
    box-shadow: none;
    text-align: left;
}

.producto:hover {
    box-shadow: none;
    transform: none;
}

.producto img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background-color: white;
    padding: 20px;
}

.producto:hover img {
    transform: scale(1.03);
}

.producto h3 {
    margin: 22px 20px 0;
    font-size: 18px;
    font-weight: 600;
}

.producto p {
    margin: 6px 20px 0;
    font-size: 14px;
    color: #666;
}

.producto .boton-producto {
    margin: 20px 20px 0;
}/* PRODUCTOS MÁS COMPACTOS */

.producto img {
    width: 100%;
    height: 330px;
    aspect-ratio: auto;
    object-fit: contain;
    padding: 25px;
}

.producto {
    padding-bottom: 25px;
}/* ==================================
   FICHA INDIVIDUAL DE PRODUCTO MABI
   ================================== */

.ficha-producto {
    display: grid;
    grid-template-columns: 58% 42%;
    min-height: calc(100vh - 72px);
    background-color: #ffffff;
}

.ficha-imagen {
    background-color: #f7f6f2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.ficha-imagen img {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
}

.ficha-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}

.ficha-info .mini-titulo {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.ficha-info h1 {
    font-size: 52px;
    margin: 0 0 12px;
    letter-spacing: -2px;
}

.ficha-estado {
    font-size: 14px;
    margin-bottom: 35px;
    color: #666;
}

.ficha-descripcion {
    max-width: 420px;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.ficha-info .boton-producto {
    width: fit-content;
    margin: 0 0 25px;
    padding: 16px 28px;
}

.volver-coleccion {
    color: #111111;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    width: fit-content;
}
.volver-coleccion:hover {
    color: #dfff00;
}


/* FICHA PRODUCTO EN CELULAR */

@media (max-width: 768px) {

    .ficha-producto {
        grid-template-columns: 1fr;
    }

    .ficha-imagen {
        padding: 35px 20px;
        min-height: 400px;
    }

    .ficha-info {
        padding: 45px 25px 60px;
    }

    .ficha-info h1 {
        font-size: 40px;
    }

    .ficha-info .boton-producto {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}/* HEADER FIJO MABI */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}/* QUIÉNES SOMOS - ESTILO EDITORIAL */

.nosotros {
    background-color: var(--mabi-negro);
    color: white;
    padding: 130px 7%;
}

.nosotros-contenido {
    max-width: 950px;
    text-align: left;
    margin: 0 auto;
}

.nosotros .mini-titulo {
    color: var(--mabi-lima);
    margin-bottom: 25px;
}

.nosotros h2 {
    font-size: 64px;
    line-height: 1;
    letter-spacing: -2.5px;
    max-width: 700px;
    margin-bottom: 35px;
}

.nosotros-texto {
    color: #d0d0d0;
    max-width: 650px;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .nosotros {
        padding: 85px 6%;
    }

    .nosotros h2 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .nosotros-texto {
        font-size: 16px;
    }
}/* NAVEGACIÓN MÓVIL MABI */

@media (max-width: 768px) {

    header {
        padding: 14px 5%;
        gap: 12px;
    }

    .logo img {
        width: 95px;
    }

    nav {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 18px;
        flex-wrap: nowrap;
    }

    nav a {
        font-size: 10px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
}/* ==================================
   BENEFICIOS MABI
   ================================== */

.beneficios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #f7f6f2;
    padding: 0 6%;
}

.beneficio {
    padding: 70px 45px;
    border-right: 1px solid #d8d8d8;
}

.beneficio:last-child {
    border-right: none;
}

.beneficio span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 35px;
}

.beneficio h3 {
    font-size: 18px;
    letter-spacing: 0.5px;
    margin: 0 0 15px;
}

.beneficio p {
    max-width: 280px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}


/* BENEFICIOS EN CELULAR */

@media (max-width: 768px) {

    .beneficios {
        grid-template-columns: 1fr;
        padding: 0 6%;
    }

    .beneficio {
        padding: 45px 10px;
        border-right: none;
        border-bottom: 1px solid #d8d8d8;
    }

    .beneficio:last-child {
        border-bottom: none;
    }
}/* ==================================
   FOOTER MABI
   ================================== */

.footer {
    background-color: #ffffff;
    color: #111111;
    padding: 70px 6% 25px;
    border-top: 1px solid #eeeeee;
}

.footer-principal {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 55px;
}

.footer-marca img {
    width: 130px;
    margin-bottom: 18px;
}

.footer-marca p {
    font-size: 11px;
    letter-spacing: 4px;
    color: #666666;
    margin: 0;
}

.footer-columna {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-columna h3 {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-columna a {
    color: #111111;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-columna a:hover {
    opacity: 0.5;
}

.footer-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eeeeee;
    padding-top: 22px;
}

.footer-final p {
    margin: 0;
    font-size: 11px;
    color: #777777;
    letter-spacing: 0.5px;
}


/* FOOTER EN CELULAR */

@media (max-width: 768px) {

    .footer {
        padding: 55px 6% 25px;
    }

    .footer-principal {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-marca img {
        width: 115px;
    }

    .footer-final {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}/* ==================================
   VARIANTES DE COLOR - MABI 01
   ================================== */

.ficha-imagen {
    flex-direction: column;
    gap: 25px;
}

#imagen-principal {
    width: 100%;
    max-width: 650px;
    height: 420px;
    object-fit: contain;
}

.miniaturas {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 650px;
}

.miniaturas img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    background-color: white;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    padding: 6px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.miniaturas img:hover {
    border-color: #111111;
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    #imagen-principal {
        height: 300px;
    }

    .miniaturas {
        grid-template-columns: repeat(3, 1fr);
    }

    .miniaturas img {
        height: 75px;
    }
}/* CORRECCIÓN MINIATURAS ARIA */

.miniaturas {
    width: 100%;
    max-width: 650px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.ficha-imagen .miniaturas img {
    width: 100%;
    max-width: none;
    height: 85px;
    object-fit: contain;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    padding: 5px;
    cursor: pointer;
    display: block;
}

.ficha-imagen .miniaturas img:hover {
    border-color: #111111;
}

@media (max-width: 768px) {
    .miniaturas {
        grid-template-columns: repeat(3, 1fr);
    }

    .ficha-imagen .miniaturas img {
        height: 70px;
    }
}.miniaturas img.seleccionada {
    border: 2px solid #111111;
}
/* =========================
   NUEVO HERO MABI
========================= */

.hero-mabi {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    min-height: 650px;
    overflow: hidden;
    background: #111;
}

.hero-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-mabi::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.48) 0%,
            rgba(0,0,0,0.10) 55%,
            rgba(0,0,0,0.02) 100%
        );
}

.hero-overlay {
    position: absolute;
    z-index: 2;
    left: 6%;
    bottom: 11%;
    max-width: 750px;
    color: white;
}

.hero-kicker {
    margin: 0 0 18px;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 500;
}

.hero-overlay h1 {
    margin: 0;
    font-size: clamp(62px, 9vw, 135px);
    line-height: 0.85;
    letter-spacing: -5px;
    font-weight: 600;
}

.hero-subtitulo {
    margin: 25px 0 30px;
    font-size: 18px;
    font-weight: 400;
}

.hero-boton {
    display: inline-block;
    padding: 16px 27px;
    background: #dfff00;
    color: #111;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.25s ease;
}

.hero-boton:hover {
    background: white;
    transform: translateY(-3px);
}


/* =========================
   HERO MOBILE
========================= */

@media (max-width: 768px) {

    .hero-mabi {
        height: 82vh;
        min-height: 560px;
    }

    .hero-imagen {
        object-position: center;
    }

    .hero-mabi::after {
        background:
            linear-gradient(
                to top,
                rgba(0,0,0,0.62) 0%,
                rgba(0,0,0,0.10) 65%
            );
    }

    .hero-overlay {
        left: 24px;
        right: 24px;
        bottom: 50px;
    }

    .hero-overlay h1 {
        font-size: 55px;
        line-height: 0.9;
        letter-spacing: -3px;
    }

    .hero-subtitulo {
        font-size: 15px;
        margin: 18px 0 24px;
    }

}/* ===== FLECHAS HERO MABI ===== */

.hero-flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 50%;

    background: rgba(0,0,0,0.18);
    color: white;

    font-size: 32px;
    font-weight: 300;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.25s ease;
}

.hero-flecha:hover {
    background: #dfff00;
    color: #000;
    border-color: #dfff00;
}

.hero-flecha-izq {
    left: 20px;
}

.hero-flecha-der {
    right: 20px;
}#heroImagen {
    transition: opacity 0.25s ease;
}/* ===== AJUSTE IMAGEN HERO NUEVO ===== */

.hero-mabi .hero-imagen {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;

    object-fit: cover;
    object-position: center 35%;

    display: block;
}/* ===== FRANJA ANIMADA MABI ===== */

.mabi-marquee {
    width: 100%;
    overflow: hidden;
    background: #dfff00;
    color: #111;
    padding: 14px 0;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    min-width: max-content;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;

    animation: mabiMarquee 20s linear infinite;
}

@keyframes mabiMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33%);
    }
}/* ========================================
   COLECCIÓN MABI - LOOK PREMIUM
======================================== */

.coleccion {
    padding: 90px 5%;
    background: #f4f3ef;
}

.coleccion-titulo {
    margin-bottom: 45px;
}

.coleccion-titulo p {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
}

.coleccion-titulo h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 500;
    letter-spacing: -2px;
}


/* GRID */

.productos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


/* TARJETA */

.producto {
    position: relative;
    background: #fff;
    padding: 0 0 28px;
    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* IMAGEN */

.producto img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;

    display: block;

    transition: transform 0.55s ease;
}


/* HOVER */

.producto:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.08);
}

.producto:hover img {
    transform: scale(1.025);
}


/* NOMBRE MODELO */

.producto h3 {
    margin: 22px 22px 4px;

    font-size: 24px;
    font-weight: 500;

    letter-spacing: -0.5px;
}


/* DISPONIBLE */

.producto p {
    margin: 0 22px 22px;

    font-size: 12px;
    letter-spacing: 1.4px;

    opacity: 0.55;
}


/* BOTÓN */

.producto .boton-producto {
    display: inline-block;

    margin-left: 22px;

    padding-bottom: 4px;

    background: transparent;
    color: #111;

    border-bottom: 1px solid #111;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.2px;

    transition: 0.25s ease;
}

.producto .boton-producto:hover {
    color: #b8d800;
    border-color: #b8d800;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .productos {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    .coleccion {
        padding: 60px 16px;
    }

    .coleccion-titulo {
        margin-bottom: 28px;
    }

    .productos {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .producto h3 {
        font-size: 22px;
    }

}/* ===== BOTÓN PRODUCTO MABI ===== */

.producto .boton-producto {
    background: transparent;
    color: #111;
    border: 1px solid #111;
    transition: all 0.25s ease;
}

.producto .boton-producto:hover {
    background: #dfff00;
    color: #000;
    border-color: #dfff00;
}/* ========================================
   TARJETA PRODUCTO MABI - REFINADA
======================================== */

.producto {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding-bottom: 24px;
}

/* IMAGEN MÁS PROTAGONISTA */

.producto img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* SOMBRA MUY SUAVE */

.producto {
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.producto:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.07);
}

.producto:hover img {
    transform: scale(1.025);
}

/* NOMBRE */

.producto h3 {
    margin: 20px 22px 3px;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

/* DISPONIBLE */

.producto p {
    margin: 0 22px 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.45;
}

/* BOTÓN MÁS LIMPIO */

.producto .boton-producto {
    margin-left: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 0 0 4px;

    border: none;
    border-bottom: 1px solid #111;

    background: transparent;
    color: #111;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
}

/* FLECHA SIN CAMBIAR HTML */

.producto .boton-producto::after {
    content: "→";
    font-size: 15px;
    transition: transform 0.25s ease;
}

.producto .boton-producto:hover {
    background: transparent;
    color: #111;
    border-color: #dfff00;
}

.producto .boton-producto:hover::after {
    transform: translateX(5px);
    color: #dfff00;
}/* ========================================
   PRODUCTOS MABI - SIN CAJAS BÁSICAS
======================================== */

.producto {
    background: transparent;
    box-shadow: none;
    padding-bottom: 30px;
    overflow: visible;
}

/* ÁREA VISUAL DEL LENTE */

.producto img {
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    display: block;

    background: #e9e8e3;

    transition:
        transform 0.55s cubic-bezier(.2,.7,.2,1),
        filter 0.4s ease;
}

/* HOVER MÁS EDITORIAL */

.producto:hover {
    transform: none;
    box-shadow: none;
}

.producto:hover img {
    transform: scale(1.018);
}

/* INFORMACIÓN MÁS LIMPIA */

.producto h3 {
    margin: 17px 0 3px;

    font-size: 21px;
    font-weight: 500;
    letter-spacing: -0.4px;

    color: #111;
}

.producto p {
    margin: 0 0 15px;

    font-size: 10px;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 1.8px;

    color: #777;
    opacity: 1;
}

/* VER MODELO */

.producto .boton-producto {
    margin-left: 0;
}/* ========================================
   HEADER PREMIUM MABI
======================================== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    transition: all 0.3s ease;
}

/* LINKS */

header nav a {
    position: relative;
    text-decoration: none;
}

/* LÍNEA LIMA ANIMADA */

header nav a::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: #dfff00;

    transition: width 0.25s ease;
}

header nav a:hover::after {
    width: 100%;
}/* ========================================
   BANNER EDITORIAL KAEL
======================================== */

.banner-editorial {
    grid-column: 1 / -1;

    position: relative;
    width: 100%;
    height: 620px;

    overflow: hidden;
    margin: 55px 0;

    background: #111;
}


/* IMAGEN */

.banner-editorial > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transition: transform 0.8s ease;
}


/* OSCURECIDO PARA LEER EL TEXTO */

.banner-editorial::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.60) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0.05) 100%
    );
}


/* EFECTO HOVER */

.banner-editorial:hover > img {
    transform: scale(1.025);
}


/* CONTENIDO */

.banner-editorial-contenido {
    position: absolute;
    z-index: 2;

    left: 6%;
    bottom: 10%;

    color: #fff;
}


/* MABI EYEWEAR */

.banner-editorial-contenido p {
    margin: 0 0 16px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;

    color: #fff;
}


/* FRASE GRANDE */

.banner-editorial-contenido h2 {
    margin: 0 0 28px;

    font-size: clamp(58px, 7vw, 105px);
    line-height: 0.86;

    letter-spacing: -4px;
    font-weight: 600;

    color: #fff;
}


/* LINK */

.banner-editorial-contenido a {
    display: inline-flex;
    align-items: center;

    color: #fff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;

    padding-bottom: 5px;

    border-bottom: 1px solid #dfff00;

    transition: color 0.25s ease;
}

.banner-editorial-contenido a:hover {
    color: #dfff00;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .banner-editorial {
        height: 560px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .banner-editorial {
        height: 520px;
        margin: 35px 0;
    }

    .banner-editorial > img {
        object-position: center;
    }

    .banner-editorial::after {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.12) 70%
        );
    }

    .banner-editorial-contenido {
        left: 24px;
        right: 24px;
        bottom: 40px;
    }

    .banner-editorial-contenido h2 {
        font-size: 52px;
        line-height: 0.9;
        letter-spacing: -2px;
    }

}/* AJUSTE FOTO KAEL */

.banner-editorial > img {
    object-position: center 30%;
}/* ========================================
   FICHA PRODUCTO PREMIUM
======================================== */

.ficha-producto {
    align-items: flex-start;
}

.ficha-info {
    position: sticky;
    top: 110px;
    padding-top: 20px;
}

/* TITULO */

.ficha-info h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

/* MINI TITULO */

.ficha-info .mini-titulo {
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

/* ESTADO */

.ficha-estado {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.55;
}

/* COLOR */

.color-seleccionado {
    margin-top: 30px;
    font-size: 13px;
    letter-spacing: 1px;
}

/* DESCRIPCION */

.ficha-descripcion {
    max-width: 420px;
    line-height: 1.7;
    font-size: 15px;
    margin: 18px 0 32px;
}

/* WHATSAPP MAS PREMIUM */

#boton-whatsapp-producto {
    width: 100%;
    max-width: 380px;
    text-align: center;

    background: #111;
    color: #fff;

    padding: 18px 24px;

    border: 1px solid #111;

    transition: 0.25s ease;
}

#boton-whatsapp-producto:hover {
    background: #dfff00;
    color: #111;
    border-color: #dfff00;
}

/* VOLVER */

.volver-coleccion {
    display: inline-block;
    margin-top: 24px;

    font-size: 11px;
    letter-spacing: 1.5px;

    opacity: 0.65;
}

.volver-coleccion:hover {
    opacity: 1;
}/* ========================================
   PANEL DERECHO PRODUCTO - PREMIUM
======================================== */

.ficha-info {
    background: #f7f7f4;
    padding: 48px 46px;
    min-height: 100vh;
}

/* TITULO */
.ficha-info h1 {
    font-size: clamp(54px, 5vw, 78px);
    line-height: 0.9;
    letter-spacing: -4px;
    margin: 10px 0 26px;
}

/* MINI TITULO */
.ficha-info .mini-titulo {
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

/* DISPONIBLE */
.ficha-estado {
    display: inline-block;
    margin-bottom: 42px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}

/* COLOR */
.color-seleccionado {
    margin: 0 0 20px;
    font-size: 13px;
    letter-spacing: 1.2px;
}

/* DESCRIPCION */
.ficha-descripcion {
    max-width: 420px;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 34px;
}

/* BOTON */
#boton-whatsapp-producto {
    width: 100%;
    max-width: 100%;
    padding: 18px 22px;
    background: #111;
    color: #fff;
    border: none;
    text-align: center;
}

/* HOVER */
#boton-whatsapp-producto:hover {
    background: #dfff00;
    color: #111;
}

/* VOLVER */
.volver-coleccion {
    margin-top: 28px;
    font-size: 11px;
    letter-spacing: 1.5px;
    opacity: 0.55;
}/* ========================================
   MINIATURAS MABI - LIMPIAS
======================================== */

.miniaturas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.miniaturas img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;

    border: 1px solid #e2e2e2;
    background: #fff;

    cursor: pointer;
    opacity: 0.82;

    transition:
        opacity 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.miniaturas img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.miniaturas img.seleccionada {
    opacity: 1;
    border: 2px solid #111;
}/* ========================================
   LAS MÁS VENDIDAS - MABI
======================================== */

.mas-vendidas {
    background: #f1f1ee;
    padding: 80px 3%;
}

.mas-vendidas-titulo {
    max-width: 1500px;
    margin: 0 auto 30px;
}

.mas-vendidas-titulo p {
    margin: 0 0 10px;
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 600;
}

.mas-vendidas-titulo h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 600;
}

.mas-vendidas-titulo h2 span {
    color: #dfff00;
    font-style: italic;
}


/* PRODUCTOS */

.mas-vendidas-grid {
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}


/* TARJETA */

.vendida-card {
    display: block;
    background: #fff;

    color: #111;
    text-decoration: none;

    overflow: hidden;
}


/* FOTO */

.vendida-imagen {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f7f7f5;
}

.vendida-imagen img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    padding: 18px;

    transition: transform 0.45s ease;
}
.vendida-card:hover .vendida-imagen img {
    transform: scale(1.035);
}


/* INFORMACIÓN */

.vendida-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    padding: 18px 16px 20px;
}

.vendida-info h3 {
    margin: 0 0 3px;

    font-size: 24px;
    line-height: 1;
    letter-spacing: -1px;
}

.vendida-info p {
    margin: 0;

    font-size: 11px;
    letter-spacing: 1.3px;

    opacity: 0.55;
}

.vendida-info > span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;

    border-bottom: 1px solid #111;
    padding-bottom: 4px;
}


/* TABLET */

@media (max-width: 1000px) {

    .mas-vendidas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* CELULAR */

@media (max-width: 600px) {

    .mas-vendidas {
        padding: 55px 16px;
    }

    .mas-vendidas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .vendida-info {
        padding: 14px 10px 16px;
    }

    .vendida-info h3 {
        font-size: 19px;
    }

    .vendida-info > span {
        display: none;
    }

}/* =========================
   SOLIS - FICHA EDITORIAL
========================= */

.ficha-info .ficha-precio {
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 500;
}

.ficha-info .ficha-estado {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.punto-disponible {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9cff00;
  display: inline-block;
}

.ficha-color-linea {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 30px;
  padding: 16px 0;

  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);

  font-size: 12px;
  letter-spacing: 1px;
}

.ficha-color-linea span {
  opacity: 0.5;
}

.ficha-color-linea strong {
  font-weight: 600;
}

.ficha-info .ficha-descripcion {
  max-width: 470px;
  margin: 26px 0;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.7;
}

.beneficios-producto {
  width: 100%;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.beneficio-producto {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 15px 0;

  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.beneficio-producto span {
  font-size: 10px;
  opacity: 0.35;
  min-width: 20px;
}

.beneficio-producto p {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}.ficha-info .ficha-estado {
  opacity: 0.75;
}

.ficha-info .ficha-descripcion {
  margin-bottom: 30px;
}.axis-img {
  object-fit: contain !important;
  object-position: center !important;
  width: 100%;
  height: 100%;
/* HOVER SUAVE COLECCIÓN */

.producto img {
  transition: transform 0.45s ease;
}

.producto:hover img {
  transform: scale(1.025);
}

.producto .boton-producto {
  transition: letter-spacing 0.25s ease;
}

.producto:hover .boton-producto {
  letter-spacing: 1.5px;
}/* =========================
   RESTAURAR GRID COLECCIÓN
========================= */

.productos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 24px;
    width: 100%;
}

.producto {
    width: 100%;
    min-width: 0;
}

.producto img {
    width: 100%;
    height: auto;
    display: block;
}

/* TABLET */
@media (max-width: 900px) {
    .productos {.producto img {
  transition: transform 0.4s ease;
}

.producto:hover img {
  transform: scale(1.02);
}
        grid-template-columns: repeat(2, 1fr);
    }
}

/* CELULAR */
@media (max-width: 600px) {
    .productos {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}.coleccion {
  padding-top: 90px;
  padding-bottom: 90px;
}

.mas-vendidas {
  padding-top: 90px;
  padding-bottom: 90px;
}

.nosotros {
  padding-top: 90px;
  padding-bottom: 90px;
}.coleccion-titulo p,
.mas-vendidas-titulo p {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 8px;
}

.coleccion-titulo h2,
.mas-vendidas-titulo h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -1.5px;
  margin: 0;
}

.coleccion-titulo,
.mas-vendidas-titulo {
  margin-bottom: 44px;
}.producto .boton-producto {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.producto .boton-producto::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.producto .boton-producto:hover::after {
  transform: scaleX(1);
}

.producto .boton-producto:hover {
  opacity: 0.75;
}header nav a {
  position: relative;
  text-decoration: none;
}

header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

header nav a:hover::after {
  transform: scaleX(1);
}.miniaturas img {
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    border-color 0.25s ease;
}

.miniaturas img:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

.miniaturas img.seleccionada {
  border: 2px solid #111;
  transform: scale(1.02);
}.ficha-info .boton-producto {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.ficha-info .boton-producto:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  opacity: 0.95;
.volver-coleccion {
  display: inline-block;
  position: relative;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.volver-coleccion::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}
.ficha-info .volver-coleccion:hover {
  transform: translateX(-5px);
  opacity: 1;
  color: #dfff00 !important;
}
.ficha-info .volver-coleccion:hover::after {
  width: 100%;
  background: #dfff00 !important;
/* BENEFICIOS MABI */

.beneficios-mabi {
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 26px 4%;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.beneficio-mabi {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  color: #111;
  white-space: nowrap;
}

.icono-beneficio {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: inline-block;
}/* NOSOTROS - VERSION EDITORIAL */

.nosotros {
  background: #111111;
  color: #ffffff;
  padding-top: 110px;
  padding-bottom: 110px;
}

.nosotros h2 {
  color: #ffffff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -2px;
  max-width: 850px;
}

.nosotros p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 650px;
  line-height: 1.7;
}

.nosotros .mini-titulo {
  color: #dfff00;
  opacity: 1;
  letter-spacing: 2.5px;
}.hero h1 {
  font-size: clamp(60px, 8vw, 120px);
  line-height: 0.88;
  letter-spacing: -4px;
}

.hero h1 span {
  color: #dfff00;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(48px, 14vw, 76px);
    letter-spacing: -2px;
  }
}.hero-overlay h1 {
  font-size: clamp(60px, 8vw, 120px);
  line-height: 0.88;
  letter-spacing: -4px;
}

.hero-overlay h1 span {
  color: #dfff00;
}

@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: clamp(48px, 14vw, 76px);
    letter-spacing: -2px;
  }
}/* HERO - DETALLES MABI */

.hero-kicker {
  color: #dfff00 !important;
  font-weight: 600;
  letter-spacing: 4px;
}

.hero-subtitulo {
  font-size: 17px;
  line-height: 1.5;
  max-width: 420px;
}

.hero-boton {
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.hero-boton:hover {
  background: #111111 !important;
  color: #ffffff !important;
  transform: translateY(-3px);
/* =========================
   ACORDEÓN PRODUCTO MABI
========================= */

.ficha-acordeon-custom {
  width: 100%;
  margin-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.ficha-acordeon-custom .acordeon-item {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.ficha-acordeon-custom .acordeon-titulo {
  width: 100% !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  margin: 0 !important;
  padding: 18px 0 !important;

  background: transparent !important;
  background-color: transparent !important;

  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  color: #111111 !important;

  font-family: "Space Grotesk", sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.7px !important;

  text-align: left !important;
  cursor: pointer;
}

.ficha-acordeon-custom .acordeon-titulo:hover {
  background: transparent !important;
  color: #111111 !important;
  transform: none !important;
}

.ficha-acordeon-custom .acordeon-signo {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.ficha-acordeon-custom .acordeon-contenido {
  display: none !important;
  padding: 0 35px 20px 0;
}

.ficha-acordeon-custom .acordeon-item.abierto .acordeon-contenido {
  display: block !important;
}

.ficha-acordeon-custom .acordeon-contenido p {
  margin: 0 !important;

  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;

  color: #666666;
}/* ==================================
   SISTEMA MAESTRO - DETALLES PRODUCTO
================================== */

.detalles-maestro-mabi {
  width: 100%;
}

.detalles-maestro-mabi .beneficios-producto {
  width: 100%;
  margin-top: 32px;
}


/* ACORDEÓN */

.acordeon-maestro-mabi {
  width: 100%;
  margin-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.acordeon-maestro-item {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}


/* BOTÓN DEL ACORDEÓN */

.detalles-maestro-mabi .acordeon-maestro-titulo {
  width: 100% !important;

  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;

  margin: 0 !important;
  padding: 18px 0 !important;

  background: transparent !important;
  background-color: transparent !important;

  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  color: #111111 !important;

  font-family: "Space Grotesk", sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.7px !important;

  text-align: left !important;

  transform: none !important;
  cursor: pointer;
}


/* EVITAR EL HOVER NEGRO DE OTROS BOTONES */

.detalles-maestro-mabi .acordeon-maestro-titulo:hover {
  background: transparent !important;
  background-color: transparent !important;
  color: #111111 !important;
  transform: none !important;
  box-shadow: none !important;
}


/* SIGNO + / − */

.acordeon-maestro-signo {
  font-size: 22px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}


/* CONTENIDO CERRADO */

.acordeon-maestro-contenido {
  display: none;
  padding: 0 35px 20px 0;
}


/* TEXTO INTERIOR */

.acordeon-maestro-contenido p {
  margin: 0 !important;

  font-family: "Space Grotesk", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;

  color: #666666 !important;
}/* ACORDEÓN MAESTRO MABI - DEFINITIVO */

.acordeon-maestro-mabi {
  width: 100%;
  margin-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.acordeon-maestro-item {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.acordeon-maestro-titulo {
  width: 100%;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 0;

  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.7px;

  color: #111;
  background: transparent;

  cursor: pointer;
}

.acordeon-maestro-signo {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.acordeon-maestro-contenido {
  display: none;
  padding: 0 30px 20px 0;
}

.acordeon-maestro-contenido p {
  margin: 0;

  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;

  color: #666;
}/* ACORDEÓN MAESTRO - MISMO ESTILO QUE RIFT */

.detalles-maestro-mabi .acordeon-maestro-mabi {
  width: 100%;
  margin-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.detalles-maestro-mabi .acordeon-maestro-item {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.detalles-maestro-mabi .acordeon-maestro-titulo {
  width: 100%;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 0;

  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.7px;

  color: #111;
  cursor: pointer;
}

.detalles-maestro-mabi .acordeon-maestro-signo {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.detalles-maestro-mabi .acordeon-maestro-contenido {
  display: none;
  padding: 0 30px 20px 0;
}

.detalles-maestro-mabi .acordeon-maestro-contenido p {
  margin: 0;

  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;

  color: #666;
}