/* FUENTE PARA TÃTULOS (MEDIUM) */
@font-face {
    font-family: 'FormaMedium';
    src: url('../formadjrdisplay-medium-testing-webfont.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

/* FUENTE PARA CUERPO DE TEXTO (REGULAR) */
@font-face {
    font-family: 'FormaRegular';
    src: url('../formadjrdisplay-regular-testing-webfont.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

/* ========================
   VARIABLES DE MARCA
======================== */
:root {
    --dark: #0f1f2e;
    --red: #d0211a;
    --brown: #955b1a;
    --yellow: #e7bc15;
    --orange: #de7d11;
    --orange-light: #ff9d3b;
    --bg: #fcfaf7;
    --bg2: #f4f0eb;
    --green: #25D366;
    --header-h: 68px;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(15,31,46,0.10);
    --shadow-lg: 0 12px 40px rgba(15,31,46,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body, p, .benefit-text p, .hero-sub {
    font-family: 'FormaRegular', sans-serif;
    font-weight: 400;
    line-height: 1.6; /* Esto da espacio entre lÃ­neas y facilita la lectura */
    color: #444;
}

h2, h3, .sec-title h2 {
    font-family: 'FormaMedium', sans-serif;
    font-weight: 500;
    letter-spacing: -0.01em; /* Esto hace que los tÃ­tulos se vean mÃ¡s "pro" */
    color: #333; /* O el color oscuro que estÃ©s usando */
}

img { max-width: 100%; height: auto; }
button { font-family: 'DM Sans', sans-serif; cursor: pointer; }

.benefit-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    font-family: 'FormaMedium';
    margin-bottom: 12px;
}

/* ========================
   SPA VIEWS
======================== */
#store-view, #privacy-view, #checkout-view { display: none; }

/* ========================
   TOP BAR
======================== */
.top-bar {
    background: linear-gradient(90deg, var(--dark) 0%, #1a3a5c 100%);
    color: #fff;
    text-align: center;
    padding: 9px 12px;
    font-size: 0.82em;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.top-bar span { color: var(--yellow); }

/* ========================
   HEADER
======================== */
header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    padding: 0 clamp(16px, 4vw, 50px);
    height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky; top: 0; z-index: 200;
    box-shadow: 0 1px 0 rgba(0,0,0,0.07);
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    position: fixed; /* <--- Importante: de 'sticky' a 'fixed' */
    top: 0;
    width: 100%; /* Asegura que ocupe todo el ancho */
    z-index: 200;
    opacity: 0; /* Lo hacemos invisible */
    pointer-events: none; /* No se puede clickear */
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out; /* TransiciÃ³n suave */
}

.logo img {
    height: 62px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a {
    padding: 8px 16px; text-decoration: none;
    color: var(--dark); font-weight: 600;
    cursor: pointer; transition: color 0.2s;
    font-size: 0.92em; border-radius: 8px;
}
.nav-desktop a:hover { color: var(--orange); background: #fff5ea; }

.nav-hamburger { display: none; background: none; border: none; font-size: 1.5em; color: var(--dark); padding: 8px; }
.nav-mobile {
    display: none; position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    z-index: 199; flex-direction: column; padding: 8px 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 14px 24px; text-decoration: none; color: var(--dark); font-weight: 600; border-bottom: 1px solid #f0f0f0; }
.nav-mobile a:hover { background: #fff5ea; color: var(--orange); }

.header-right { display: flex; align-items: center; gap: 12px; }
.cart-icon-btn {
    position: relative; background: var(--dark); color: #fff;
    border: none; padding: 9px 18px; border-radius: 30px;
    font-weight: 700; font-size: 0.9em; display: flex;
    align-items: center; gap: 6px; transition: 0.2s;
}
.cart-icon-btn:hover { background: var(--orange); }
#cart-count-badge {
    position: absolute; top: -6px; right: -6px;
    background: var(--red); color: #fff; border-radius: 50%;
    width: 20px; height: 20px; font-size: 0.72em;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; display: none;
}

/* ========================
   HERO
======================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(10,25,40,0.42), rgba(10,25,40,0.62)),
                url('https://i.postimg.cc/hjgCDDfh/imagenweb1.png');
    background-size: cover; background-position: center;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center; padding: 20px;
    overflow: hidden;
}

.hero-logo { 
    width: clamp(180px, 20vw, 280px); /* Aumentamos el tamaÃ±o */
    margin-bottom: 20px; 
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); 
}

.hero-eyebrow {
    background: var(--yellow);
    color: var(--dark);
    padding: 5px 18px; border-radius: 30px;
    font-size: 0.82em; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
    animation: fadeDown 0.6s ease both;
}

.hero h1 {
    color: #fff;
    font-family: 'FormaMedium', sans-serif;
    font-size: clamp(2.5em, 6vw, 4.5em);
    font-weight: 500;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    animation: fadeDown 0.6s 0.1s ease both;
    margin-top: 10px; /* Espacio extra respecto a la etiqueta amarilla */
    margin-bottom: 15px;
}

.hero h1 em { color: var(--yellow); font-style: normal; }

.hero-sub {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
    font-weight: 600;
    text-shadow: none;
}

.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; animation: fadeDown 0.6s 0.3s ease both; }

/* Trust social inline */
.hero-trust {
    display: flex; gap: 24px; margin-top: 40px;
    flex-wrap: wrap; justify-content: center;
    animation: fadeDown 0.6s 0.4s ease both;
    color: #ffffff;
}
.hero-trust-item {
    color: #ffffff;
    font-size: 0.83em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-trust-item span { font-size: 1.2em; }

@keyframes fadeDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:none; } }


/* ========================
   SOCIAL PROOF BAR
======================== */
.social-proof-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 14px clamp(16px,4vw,50px);
    display: flex; align-items: center; justify-content: center;
    gap: clamp(16px,3vw,40px); flex-wrap: wrap;
}
.proof-item { display: flex; align-items: center; gap: 8px; font-size: 0.88em; font-weight: 600; color: #555; }
.proof-icon { font-size: 1.3em; }
.proof-item strong { color: var(--dark); }

/* ========================
   BOTONES BASE CANNIET
======================== */

.btn-primary,
.btn-secondary,
.btn-outline-dark,
.btn-store-primary,
.btn-store-soft,
.dist-btn-main,
.dist-btn-secondary,
.detail-add-btn,
.btn-checkout,
.btn-place-order {
    min-height: 50px;
    padding: 13px 26px;
    border-radius: 999px;
    font-family: 'FormaMedium', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

/* Botón principal: naranja */
.btn-primary,
.btn-store-primary,
.dist-btn-main,
.detail-add-btn,
.btn-checkout,
.btn-place-order {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #ffffff;
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 12px 26px rgba(222,125,17,0.28);
}

/* Botón secundario sobre fondos oscuros */
.btn-secondary,
.btn-store-soft,
.dist-btn-secondary {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border-color: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
}

/* Botón outline sobre fondo claro */
.btn-outline-dark {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
    box-shadow: none;
}

.btn-primary:hover,
.btn-store-primary:hover,
.dist-btn-main:hover,
.detail-add-btn:hover,
.btn-checkout:hover,
.btn-place-order:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--dark), #1a3a5c);
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(15,31,46,0.22);
}

.btn-secondary:hover,
.btn-store-soft:hover,
.dist-btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.20);
    border-color: #ffffff;
    color: #ffffff;
}

.btn-outline-dark:hover {
    transform: translateY(-2px);
    background: var(--orange);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(222,125,17,0.22);
}

/* ========================
   TRUST BAR
======================== */
.trust-bar-image-wrap {
    background: rgb(247, 247, 247); /* Tu gris personalizado #f7f7f7 */
    padding: 30px clamp(16px, 4vw, 50px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #e0d8d0; /* Borde sutil */
}

.trust-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;

    /* --- TRUCO DE FUSIÃ“N: ESTO ELIMINA EL MARCO --- */
    mix-blend-mode: multiply; /* Fusiona los blancos de la imagen con el fondo gris */
    filter: brightness(1.02) contrast(1.1); /* Limpia y define mÃ¡s los logos */
    
    opacity: 0.9; /* Opcional: hace los logos un pelÃ­n mÃ¡s suaves */
}

/* Ajuste para mÃ³viles */

@media (max-width: 700px) {
    .wall-of-fame {
        padding: 54px 18px 92px !important;
        overflow: hidden !important;
    }

    .wall-of-fame h2 {
        font-size: 2.1rem !important;
        line-height: 1.05 !important;
    }

    .wall-of-fame p {
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
        max-width: 340px !important;
        margin: 0 auto 22px !important;
        text-align: center !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 360px !important;
        margin: 28px auto 0 !important;
    }

    .gallery-item {
        min-height: 210px !important;
    }

    .wall-dog-img {
        width: 165px !important;
        right: 50% !important;
        bottom: -18px !important;
        transform: translateX(50%) !important;
    }
}

@media (max-width: 560px) {
    .quiz-dog-img {
        width: 130px !important;
        right: 16px !important;
        top: -85px !important;
    }

    .quiz-banner {
        margin-top: 80px !important;
    }
}

@media(max-width: 600px) {
    .trust-bar-image-wrap {
        padding: 20px 15px;
    }
}

@media (max-width: 768px){
    .quiz-box{
        padding: 60px 24px 120px;
    }

    .quiz-dog{
        width: 180px;
        max-width: 48vw;
        right: 10px;
        bottom: -20px;
    }

    .quiz-content{
        max-width: 100%;
    }
}

/* ========================
   BENEFITS (ARRIBA DEL FOLD)
======================== */
.benefits-section {
    position: relative;
    background:
        linear-gradient(rgba(244, 240, 235, 0.78), rgba(244, 240, 235, 0.78)),
        url('https://i.postimg.cc/7LVk5ZBk/Gemini-Generated-Image-3umb4i3umb4i3umb.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px clamp(16px, 5vw, 60px);
}

.benefits-title {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 38px;
}

.benefits-title span {
    display: inline-block;
    background: #fff5ea;
    color: var(--orange);
    font-family: 'FormaMedium', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.benefits-title h2 {
    font-family: 'FormaMedium', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 10px;
}

.benefits-title p {
    font-family: 'FormaRegular', sans-serif;
    color: #000000;
    font-size: 1.2rem;
}

.benefits-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.benefit-card {
    background: #fff;
    border-radius: 28px;
    padding: 34px 28px;
    min-height: 200px;
    box-shadow: 0 18px 45px rgba(15,31,46,0.08);
    border: 1px solid rgba(149,91,26,0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    width: 6px;
    height: 80px;
    background: linear-gradient(180deg, var(--orange), var(--yellow));
    border-radius: 0 999px 999px 0;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15,31,46,0.12);
}

.benefit-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: #fff5ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 22px;
}

.benefit-card h3 {
    font-family: 'FormaMedium', sans-serif;
    font-size: 1.4rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.benefit-card p {
    font-family: 'FormaRegular', sans-serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.65;
}

@media (max-width: 980px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .benefits-section {
        padding: 52px 18px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: auto;
        padding: 30px 26px;
    }
}

/* ========================
   SECTION TITLES
======================== */
.sec-title { text-align: center; padding: clamp(40px,5vw,60px) clamp(16px,4vw,40px) 10px; }
.sec-title h2 { font-size: clamp(1.8em,4vw,2.6em); margin-bottom: 8px; }
.sec-title p { color: #666; font-size: 0.95em; max-width: 500px; margin: 0 auto; }

/* ========================
   PRODUCTOS
======================== */

.product-subtitle {
    font-family: 'FormaRegular', sans-serif;
    font-size: 0.82rem;
    color: var(--orange);
    margin: -2px 0 4px;
    line-height: 1.3;
}

.product-presentation {
    display: inline-block;
    font-family: 'FormaMedium', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    background: #fff5ea;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.product-card.sold-out {
    opacity: 0.72;
}

.product-card.sold-out .product-image-carousel img {
    filter: grayscale(100%);
}

.product-card.sold-out::after {
    content: "AGOTADO";
    position: absolute;
}

.btn-add.btn-disabled,
.btn-add:disabled {
    background: #b8b8b8;
    color: #fff;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-add.btn-disabled:hover,
.btn-add:disabled:hover {
    background: #b8b8b8;
    transform: none;
}

.qty-btn:disabled,
.qty-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%,230px),1fr));
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px clamp(16px,4vw,50px) 48px;
}

.product-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(15,31,46,0.08);
    box-shadow: 0 16px 38px rgba(15,31,46,0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(15,31,46,0.12);
    border-color: rgba(222,125,17,0.24);
}

.product-card.featured { border: 2px solid var(--orange); }

/* Ãrea de imagen y etiquetas */

/* ========================
   CARRUSEL DE IMÃGENES PRODUCTO
======================== */
.card-img-wrap {
    position: relative;
    background: transparent;
    overflow: hidden;
    height: 300px;
    padding: 0;
    margin: 0;
    border-radius: 20px 20px 0 0;
}


.badge-row {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    font-family: 'FormaMedium', sans-serif;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 999px;
}

.badge.red { background: var(--red); color: #fff; }
.badge.orange { background: var(--orange); color: #fff; }
.badge.yellow { background: var(--yellow); color: var(--dark); }
.badge.green { background: #2ecc71; color: #fff; }
.badge.dark { background: var(--dark); color: #fff; }

/* Stock indicator */
.stock-indicator {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--red);
    font-family: 'FormaMedium', sans-serif;
    font-size: 0.7rem;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid var(--red);
}

.card-body {
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-body h3 {
    font-family: 'FormaMedium', sans-serif;
    color: var(--dark);
    font-size: 1.18rem;
    line-height: 1.18;
    margin: 0 0 8px;
}

.card-body .card-desc {
    font-family: 'FormaRegular', sans-serif;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 22px;
    min-height: 42px;
    text-align: left !important; 
}

.detail-long-desc,
.detail-section-block p,
.detail-section-block li,
.review-card p {
    text-align: left !important;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 18px 0 14px;
}

.price-current {
    font-family: 'FormaMedium', sans-serif;
    font-size: 1.8rem;
    color: var(--red);
    font-weight: 700;
}

.price-old { color: #aaa; font-size: 0.85em; text-decoration: line-through; }
.price-save { background: #fff0f0; color: var(--red); font-size: 0.72em; font-weight: 700; padding: 2px 8px; border-radius: 10px; }

.qty-controls { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 10px; 
    margin: 14px 0 18px;
}

.qty-btn { 
    background: var(--bg2); 
    color: var(--dark); 
    border: none; 
    width: 38px; 
    height: 38px; 
    border-radius: 12px; 
    font-weight: 700; 
    font-size: .9em; 
    transition: 0.15s; 
}

.qty-btn:hover { background: #ddd; }

.qty-input { 
    width: 54px; 
    height: 38px;
    text-align: center; 
    border: 1px solid #e0d8d0; 
    border-radius: 10px; 
    padding: 0px; 
    font-weight: 700; 
    font-size: 1rem; 
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 38px;
 }


.btn-add {
    background: var(--orange);
    color: #fff; /* <--- Esto cambia el texto y el emoji a blanco */
    font-family: 'FormaMedium', sans-serif;
    padding: 12px;
    border-radius: 16px;
    font-size: 1rem; /* Lo subÃ­ un pelÃ­n para que destaque mÃ¡s */
    font-weight: 600;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    height: 56px;
}

/* Efecto al pasar el mouse para que no se pierda la interacciÃ³n */
.btn-add:hover {
    background: var(--dark); /* Cambia a azul oscuro al pasar el mouse */
    transform: translateY(-2px);
}

.btn-add:active { transform: scale(0.97); }

/* Upsell micro inside card */
.card-upsell {
    background: #fffaf5; border-top: 1px dashed var(--orange);
    padding: 8px 14px; font-size: 0.75em; color: #555;
    display: flex; align-items: center; justify-content: space-between;
}
.card-upsell button { background: var(--orange); color:#fff; border:none; padding:3px 10px; border-radius:10px; font-size:0.9em; font-weight:700; }

/* Ajuste especial para Favoritos de la Manada */
#favoritosGrid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
    justify-content: center;
}

#favoritosGrid .product-card {
    max-width: 360px;
}

#favoritosGrid .card-img-wrap {
    height: 280px;
}

#favoritosGrid .card-body {
    padding: 30px 28px 28px;
}

#favoritosGrid .card-body h3 {
    font-size: 1.45rem;
}

#favoritosGrid .product-subtitle {
    font-size: 0.95rem;
}

#favoritosGrid .product-presentation {
    font-size: 0.9rem;
    padding: 6px 14px;
}

#favoritosGrid .card-desc {
    font-size: 0.95rem;
    min-height: auto;
    margin-bottom: 22px;
}

#favoritosGrid .price-current {
    font-size: 2rem;
}

#favoritosGrid .btn-add {
    height: 58px;
    font-size: 1.05rem;
}

#favoritosGrid .product-image-carousel {
    height: 100%;
}

#favoritosGrid .product-image-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ========================
   QUIZ BANNER
======================== */

.quiz-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #1a3a5c 100%);
    color: #fff;
    padding: clamp(40px, 8vw, 70px) 30px;
    text-align: center;
    margin: 40px clamp(16px, 4vw, 20px);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 31, 46, 0.15);
}
.quiz-banner::before {
    content: '';
    position: absolute;
    font-size: 12em;
    right: -30px;
    bottom: -50px;
    opacity: 0.1;
    transform: rotate(-15deg);
}
.quiz-banner h2 {
    font-family: 'FormaMedium', sans-serif; /* Tu nueva fuente */
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    color: #fff;
    position: relative; /* Para quedar sobre la huella */
    letter-spacing: -0.02em;
}

.quiz-banner p {
    font-family: 'FormaRegular', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
    position: relative;
}

/* BotÃ³n del Quiz con mejor visibilidad */
.quiz-banner button {
    background: var(--yellow);
    color: var(--dark);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'FormaMedium', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(231, 188, 21, 0.3);
    position: relative;
}

.quiz-banner button:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(231, 188, 21, 0.4);
    background: #fff; /* Cambio a blanco en hover para feedback visual */
}

.quiz-box{
    position: relative;
    overflow: visible; /* importante para que el perro pueda â€œsalirseâ€ */
    background: linear-gradient(135deg, #0b2340 0%, #14395f 100%);
    border-radius: 38px;
    padding: 90px 60px;
}

.quiz-content{
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.quiz-dog{
    position: absolute;
    right: 40px;
    bottom: -35px; /* esto hace que se salga del recuadro */
    width: 320px;
    max-width: 26vw;
    height: auto;
    z-index: 3;
    object-fit: contain;
    filter: drop-shadow(0 18px 25px rgba(0,0,0,0.22));
    pointer-events: none;
}

/* ========================
TESTIMONIALS
======================== */

.testimonials {
background: var(--bg2);
padding: clamp(40px,5vw,60px) clamp(16px,4vw,40px);
overflow: visible !important;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%,280px),1fr));
gap: 20px;
max-width: 1100px;
margin: 95px auto 0;
align-items: stretch !important;
overflow: visible !important;
}

.testimonial-card,
.testimonial-dog-wrap {
height: 100%;
min-height: 360px;
}

.testimonial-card {
background: #fff;
padding: 24px;
border-radius: var(--radius);
box-shadow: var(--shadow);
position: relative;
overflow: visible;

display: flex;
flex-direction: column;
justify-content: space-between;
}

.testimonial-card::before {
content: '"';
font-size: 5em;
color: var(--orange);
opacity: 0.15;
position: absolute;
top: -10px;
left: 16px;
font-family: serif;
line-height: 1;
}

.t-stars {
color: var(--yellow);
margin-bottom: 10px;
font-size: 1.1em;
}

.t-text {
font-size: 0.92em;
color: #444;
margin-bottom: 14px;
line-height: 1.6;
flex-grow: 1;
}

.t-author {
display: flex;
align-items: center;
gap: 10px;
margin-top: auto;
}

.t-avatar {
width: 38px;
height: 38px;
border-radius: 50%;
background: var(--bg2);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3em;
border: 2px solid var(--orange);
}

.t-name {
font-weight: 700;
font-size: 0.88em;
}

.t-dog {
font-size: 0.78em;
color: #888;
}

/* Perrito fuera de la tarjeta de Marco */
.testimonial-dog-wrap {
position: relative;
overflow: visible;
}

.testimonial-dog-wrap .testimonial-card {
height: 100%;
}

.dog-over-marco {
position: absolute;
width: 150px;
max-width: 150px;
height: auto;
top: -112px;
left: 50%;
transform: translateX(-50%);
z-index: 5;
pointer-events: none;
filter: drop-shadow(0 12px 22px rgba(15,31,46,0.16));
}

/* MÃ³vil */
@media (max-width: 700px) {
.testimonials-grid {
    margin-top: 75px;
}

.testimonial-card,
.testimonial-dog-wrap {
    min-height: auto;
}

.dog-over-marco {
    width: 125px;
    max-width: 125px;
    top: -62px;
}
}

@media (max-width: 700px) {
    .faq-section {
        width: 100% !important;
        max-width: none !important;
        padding: 58px 16px 70px !important;
    }

    .faq-header {
        margin-bottom: 28px !important;
    }

    .faq-header h2,
    .faq-section h2 {
        font-size: 2.35rem !important;
        line-height: 1 !important;
    }

    .faq-carousel-wrap {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .faq-carousel {
        gap: 16px !important;
        padding: 4px 4px 24px !important;
    }

    .faq-card {
        flex: 0 0 86% !important;
        min-height: auto !important;
        padding: 28px 24px !important;
        border-radius: 24px !important;
    }

    .faq-nav {
        display: none !important;
    }
}

/* ========================
   ABOUT
======================== */
/* SECCIÃ“N NUESTRA ESENCIA MEJORADA */
.about-section {
    padding-top: 10px;
    background-color: var(--bg); /* O un color muy suave */
}

.about-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border-top: 6px solid var(--red); /* Borde superior mÃ¡s grueso y elegante */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centramos el contenido para mejor estÃ©tica */
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.about-card .a-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

/* ImÃ¡genes para Nuestra Esencia */
.about-card .a-icon {
    display: none;
}

.a-img {
    width: 100%;
    max-width: 300px;
    height: 190px;
    margin: 0 auto 28px;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.a-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.about-card h3 {
    font-family: 'FormaMedium', sans-serif;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.about-card p {
    font-family: 'FormaRegular', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Ajuste del tÃ­tulo de la secciÃ³n */
.sec-title h2 {
    font-family: 'FormaMedium', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-top: 0px;
    margin-bottom: 0px;
}

.sec-title p {
    font-family: 'FormaRegular', sans-serif;
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
}

/* ========================
   FAQ CAROUSEL
======================== */

.faq-section {
    position: relative;
    width: 100% !important;
    max-width: none !important;
    padding: 78px 20px 90px !important;
    background:
        radial-gradient(circle at 12% 12%, rgba(231,188,21,.16), transparent 28%),
        linear-gradient(180deg, #fcfaf7 0%, #ffffff 100%) !important;
    overflow: hidden;
}

.faq-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 38px !important;
}

.faq-header h2,
.faq-section h2 {
    font-family: 'FormaMedium', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 4.2rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.045em !important;
    color: var(--dark);
    margin: 0 0 10px !important;
    text-align: center !important;
    padding: 0 !important;
}

.faq-header p,
.faq-hint {
    color: #777 !important;
    font-size: 0.98rem !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 560px !important;
}

.faq-carousel-wrap {
    position: relative;
    width: min(1220px, calc(100% - 32px)) !important;
    max-width: 1220px !important;
    margin: 0 auto !important;
    padding: 0 58px !important;
}

.faq-carousel {
    display: flex !important;
    gap: 24px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    padding: 8px 2px 34px !important;
    scrollbar-width: none !important;
}

.faq-carousel::-webkit-scrollbar {
    display: none !important;
}

.faq-card {
    flex: 0 0 calc((100% - 48px) / 3) !important;
    scroll-snap-align: start !important;
    background: #ffffff !important;
    border-radius: 28px !important;
    border: 1px solid rgba(15,31,46,0.08) !important;
    box-shadow: 0 18px 42px rgba(15,31,46,0.08) !important;
    padding: 34px 32px !important;
    min-height: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.faq-cat {
    display: block;
    color: var(--orange) !important;
    font-family: 'FormaMedium', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin: 0 0 18px !important;
    text-align: center !important;
}

.faq-card h3 {
    font-family: 'FormaMedium', sans-serif !important;
    font-size: 1.28rem !important;
    font-weight: 600 !important;
    margin: 0 0 18px !important;
    color: var(--dark) !important;
    line-height: 1.22 !important;
    min-height: auto !important;
    text-align: center !important;
}

.faq-card p {
    font-size: 0.96rem !important;
    color: #555 !important;
    line-height: 1.58 !important;
    text-align: left !important;
    margin: 0 !important;
}

.faq-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 5 !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(15,31,46,.12) !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 12px 28px rgba(15,31,46,.12) !important;
    color: var(--dark) !important;
    font-family: 'FormaMedium', sans-serif !important;
    cursor: pointer !important;
}

.faq-nav:hover {
    background: var(--orange) !important;
    color: #ffffff !important;
}

.faq-nav.prev {
    left: 0 !important;
}

.faq-nav.next {
    right: 0 !important;
}


/* ========================
   WALL OF FAME
======================== */

.wall-of-fame h2 { font-size: clamp(1.8em,4vw,2.4em); margin-bottom: 8px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 180px);
    gap: 18px;
    max-width: fit-content;
    margin: 32px auto 0;
    justify-content: center;
}
.gallery-item { aspect-ratio: 1/1; background: var(--bg2); border-radius: 12px; display: flex; align-items: center; justify-content: center; border: 2px dashed #ccc; color: #aaa; font-size: 0.82em; }

/* ========================
   CARRITO LATERAL
======================== */
.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 2999; }

.cart-panel {
    position: fixed; 
    top: 0; 
    right: -100%;
    width: min(100%, 520px); 
    height: 100dvh;
    background: #fff; 
    z-index: 3001;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex; 
    flex-direction: column;
}

.cart-panel.open { right: 0; }

.cart-header { padding: 18px 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; background: var(--bg2); flex-shrink: 0; }
.cart-header h3 { font-family: 'Playfair Display', serif; font-size: 1.2em; }


.cart-progress {
    padding: 18px 24px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.cart-progress span {
    display: block;
    font-family: 'FormaMedium', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.progress-bar {
    height: 10px;
    background: #eee;
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    border-radius: 999px;
}


.cart-items { flex-grow: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; color: #aaa; margin-top: 60px; }
.cart-empty p { font-size: 0.95em; margin-top: 12px; }

.item-img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--bg2);
    overflow: hidden;
    flex-shrink: 0;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid #eee4da;
}

.item-info h4 {
    font-family: 'FormaMedium', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.item-info .item-price {
    color: var(--red);
    font-family: 'FormaMedium', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 12px;
}

.item-qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-qty-btn {
    background: var(--bg2);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-weight: 700;
    color: var(--dark);
}

.item-qty-num {
    font-family: 'FormaMedium', sans-serif;
    font-size: 1rem;
    min-width: 22px;
    text-align: center;
    color: var(--dark);
}

.item-remove {
    background: none;
    border: none;
    color: #aaa;
    font-size: 0.82rem;
    text-decoration: underline;
    cursor: pointer;
    padding-top: 8px;
}

.item-remove:hover {
    color: var(--red);
}

/* Smart Upsell in cart */
.cart-upsell-bar {
    background: linear-gradient(135deg, #fff8ef, #fff);
    border: 1.5px dashed var(--orange);
    margin: 0 16px 12px; border-radius: 12px; padding: 12px 14px;
    display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.cart-upsell-bar .u-icon { font-size: 1.8em; }
.cart-upsell-bar .u-text { flex-grow: 1; }
.cart-upsell-bar .u-text p { font-size: 0.8em; font-weight: 700; margin-bottom: 1px; }
.cart-upsell-bar .u-text span { font-size: 0.75em; color: var(--red); font-weight: 600; }
.cart-upsell-bar button { background: var(--orange); color: #fff; border: none; padding: 6px 13px; border-radius: 10px; font-weight: 700; font-size: 0.82em; white-space: nowrap; font-family: 'DM Sans', sans-serif; }

.cart-footer { padding: 14px 20px 20px; border-top: 1px solid #eee; background: var(--bg); flex-shrink: 0; }

.promo-box { display: flex; gap: 8px; margin-bottom: 12px; }
.promo-box input { flex-grow: 1; padding: 9px 13px; border: 1.5px solid #e0d8d0; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.88em; outline: none; transition: border-color 0.2s; }
.promo-box input:focus { border-color: var(--orange); }
.promo-box button { background: var(--dark); color: #fff; border: none; padding: 9px 14px; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.85em; transition: 0.2s; }
.promo-box button:hover { background: var(--orange); }
.promo-msg { font-size: 0.78em; font-weight: 600; color: var(--green); margin: -6px 0 10px; }

.cart-totals {
    margin: 18px 0;
    background: #fff;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    padding: 8px 0;
    color: #555;
}

.totals-row span:last-child {
    font-family: 'FormaMedium', sans-serif;
    color: var(--dark);
}

.totals-row.grand {
    font-size: 1.35rem;
    font-family: 'FormaMedium', sans-serif;
    font-weight: 600;
    border-top: 2px solid #e0d8d0;
    padding-top: 18px;
    margin-top: 10px;
    color: var(--dark);
}

.btn-checkout {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff; width: 100%; padding: 15px;
    border: none; border-radius: 14px;
    font-size: 1.05em; font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    transition: 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 4px 16px rgba(222,125,17,0.35);
}
.btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(222,125,17,0.4); }

.cart-footer-note { text-align: center; font-size: 0.7em; color: #aaa; margin-top: 8px; }

/* ========================
   CHECKOUT PRO
======================== */
.checkout-view-inner {
    max-width: 960px; margin: 0 auto;
    padding: clamp(20px,4vw,40px) clamp(16px,4vw,30px);
    display: grid; grid-template-columns: 1fr min(380px,42%); gap: 30px;
}
@media(max-width:700px){.checkout-view-inner{grid-template-columns:1fr;}}

.checkout-back { display: flex; align-items: center; gap: 8px; background: none; border: none; color: var(--orange); font-weight: 700; font-size: 0.95em; font-family: 'DM Sans', sans-serif; margin-bottom: 20px; cursor: pointer; }

.checkout-steps { display: flex; gap: 0; margin-bottom: 28px; }
.step-pill {
    flex: 1; text-align: center; padding: 10px;
    font-size: 0.82em; font-weight: 700; color: #bbb;
    border-bottom: 3px solid #eee; transition: 0.3s;
}
.step-pill.active { color: var(--orange); border-color: var(--orange); }
.step-pill.done { color: var(--green); border-color: var(--green); }

.checkout-section { background: #fff; border-radius: var(--radius); padding: 24px 22px; margin-bottom: 20px; box-shadow: var(--shadow); }
.checkout-section h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1em; margin-bottom: 18px; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.checkout-section h3 span { background: var(--orange); color: #fff; width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.85em; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row.single { grid-template-columns: 1fr; }
@media(max-width:500px){ .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.8em; font-weight: 700; color: #555; }
.form-group input, .form-group select {
    padding: 11px 14px; border: 1.5px solid #e0d8d0;
    border-radius: 10px; font-family: 'DM Sans', sans-serif;
    font-size: 0.92em; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff; color: var(--dark); width: 100%;
}
.form-group input:focus, .form-group select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(222,125,17,0.12); }
.form-group input.error { border-color: var(--red); }
.form-group .field-error { font-size: 0.75em; color: var(--red); display: none; }
.form-group.has-error .field-error { display: block; }
.form-group.has-error input { border-color: var(--red); }

.input-with-icon { position: relative; }
.input-with-icon input { padding-left: 38px; }
.input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 1em; pointer-events: none; }

.shipping-options { display: flex; flex-direction: column; gap: 10px; }
.shipping-opt {
    border: 1.5px solid #e0d8d0; border-radius: 12px; padding: 13px 16px;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; transition: border-color 0.2s; position: relative;
}
.shipping-opt:hover { border-color: var(--orange); }
.shipping-opt.selected { border-color: var(--orange); background: #fff8f2; }
.shipping-opt input[type=radio] { position: absolute; opacity: 0; }
.ship-info { display: flex; align-items: center; gap: 12px; }
.ship-icon { font-size: 1.5em; }
.ship-name { font-weight: 700; font-size: 0.9em; }
.ship-eta { font-size: 0.78em; color: #888; }
.ship-price { font-weight: 700; color: var(--dark); }
.ship-price.free { color: var(--green); }
.ship-checkmark { width: 20px; height: 20px; border-radius: 50%; border: 2px solid #ccc; background: #fff; transition: 0.2s; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.7em; }
.shipping-opt.selected .ship-checkmark { background: var(--orange); border-color: var(--orange); color: #fff; }

.payment-methods { display: flex; flex-direction: column; gap: 10px; }
.pay-method {
    border: 1.5px solid #e0d8d0; border-radius: 12px; padding: 14px 16px;
    cursor: pointer; transition: 0.2s; position: relative;
}
.pay-method:hover { border-color: var(--orange); }
.pay-method.selected { border-color: var(--orange); background: #fff8f2; }
.pay-method input[type=radio] { position: absolute; opacity: 0; }
.pay-header { display: flex; align-items: center; gap: 12px; }
.pay-icon { font-size: 1.5em; }
.pay-name { font-weight: 700; font-size: 0.9em; }
.pay-desc { font-size: 0.78em; color: #888; }
.pay-details { margin-top: 14px; padding-top: 14px; border-top: 1px solid #f0ebe4; display: none; }
.pay-method.selected .pay-details { display: block; }
.bank-info {
    background: #fff;
    padding: 16px;
    border-radius: 14px;
    font-size: 0.88em;
    border: 1px solid #f0e4d6;
    box-shadow: 0 8px 22px rgba(15,31,46,0.04);
}

.bank-info div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 10px;
    align-items: start;
    padding: 9px 0;
    border-bottom: 1px solid #f4eee7;
}

.bank-info div:last-of-type {
    border-bottom: none;
}

.bank-info .bi-key {
    font-family: 'FormaMedium', sans-serif;
    font-weight: 600;
    color: #7a6a58;
}

.bank-info .bi-val {
    font-family: 'FormaMedium', sans-serif;
    font-weight: 600;
    color: var(--dark);
    word-break: break-word;
}

#clabe-val {
    font-family: monospace;
    font-size: 1.02em;
    letter-spacing: 0.04em;
    color: var(--red);
}

.copy-clabe {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 11px 16px;
    border-radius: 12px;
    font-size: 0.9em;
    cursor: pointer;
    font-family: 'FormaMedium', sans-serif;
    margin-top: 12px;
    width: 100%;
    transition: all 0.2s ease;
}

.copy-clabe:hover {
    background: var(--orange);
    transform: translateY(-1px);
}

/* Order summary sidebar */
.order-summary {
    background: #fff; border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 22px;
    height: fit-content; position: sticky; top: calc(var(--header-h) + 20px);
}
.order-summary h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1em; margin-bottom: 16px; }
.os-items { margin-bottom: 16px; }
.os-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #f5f0eb; font-size: 0.88em; gap: 8px; }
.os-item .os-name { flex-grow: 1; }
.os-item .os-qty { color: #888; font-size: 0.85em; }
.os-item .os-price { font-weight: 700; white-space: nowrap; }
.os-totals { font-size: 0.88em; }
.os-totals-row { display: flex; justify-content: space-between; padding: 5px 0; }
.os-totals-row.grand { font-size: 1.05em; font-weight: 700; border-top: 1.5px solid #e0d8d0; padding-top: 10px; margin-top: 6px; }
.os-trust { margin-top: 18px; display: flex; flex-direction: column; gap: 6px; }
.os-trust-item { font-size: 0.78em; color: #777; display: flex; align-items: center; gap: 6px; }

.btn-place-order {
    background: linear-gradient(135deg, #de7d11, #ff9d3b);
    color: #fff; width: 100%; padding: 16px;
    border: none; border-radius: 14px;
    font-size: 1.05em; font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    margin-top: 16px; transition: 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 4px 16px rgba(222,125,17,0.35);
}
.btn-place-order:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(222,125,17,0.45); }
.btn-place-order:disabled { background: #ccc; box-shadow: none; cursor: not-allowed; transform: none; }

/* ========================
   CONFIRMACIÃ“N DE PEDIDO
======================== */
#confirmacion-view { display: none; }
.confirm-inner {
    max-width: 600px; margin: 0 auto;
    padding: clamp(30px,5vw,60px) clamp(16px,4vw,30px);
    text-align: center;
}
.confirm-icon { font-size: 5em; margin-bottom: 16px; animation: popIn 0.5s ease; }
.confirm-inner h2 { font-size: clamp(1.8em,4vw,2.4em); margin-bottom: 12px; color: var(--green); }
.confirm-inner p { color: #555; font-size: 0.95em; margin-bottom: 20px; }
.confirm-order-box {
    background: var(--bg2); border-radius: var(--radius); padding: 20px;
    text-align: left; margin: 20px 0; font-size: 0.88em;
}
.confirm-order-box .co-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid #e8e0d8; }
.confirm-order-box .co-row:last-child { border-bottom: none; font-weight: 700; font-size: 1.05em; }
.order-number-badge { display: inline-block; background: var(--orange); color: #fff; padding: 6px 20px; border-radius: 30px; font-weight: 700; font-size: 1.1em; margin-bottom: 20px; }
.confirm-next-steps { text-align: left; margin: 20px 0; }
.confirm-next-steps h4 { font-family: 'DM Sans', sans-serif; font-weight: 700; margin-bottom: 12px; }
.step-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.step-num { background: var(--dark); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.82em; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.step-desc { font-size: 0.88em; color: #555; }
.step-desc strong { color: var(--dark); display: block; margin-bottom: 2px; }

/* ========================
   BOTÃ“N FLOTANTE WHATSAPP
======================== */
.whatsapp-float {
    position: fixed; bottom: 22px; right: 22px;
    width: 60px; height: 60px; background: var(--green);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5); cursor: pointer;
    z-index: 3500; font-size: 1.8em; text-decoration: none;
    animation: pulseWa 2.5s infinite;
    transition: transform 0.2s;
    background: var(--green);
    opacity: 0; /* <--- AÃ‘ADE ESTO */
    transition: opacity 0.4s ease; /* <--- AÃ‘ADE ESTO */
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
@keyframes pulseWa {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}
.whatsapp-tooltip {
    position: fixed; bottom: 92px; right: 20px;
    background: var(--dark); color: #fff;
    padding: 6px 14px; border-radius: 20px;
    font-size: 0.78em; font-weight: 700;
    white-space: nowrap; z-index: 3499;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.whatsapp-float:hover ~ .whatsapp-tooltip { opacity: 1; }

/* ========================
   FOOTER
======================== */
/* FOOTER PREMIUM REEMPLAZO */
footer {
    background-color: var(--dark);
    color: #fff;
    padding: 60px clamp(16px, 5vw, 50px) 30px;
    font-family: 'FormaRegular', sans-serif;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-section h3 {
    font-family: 'FormaMedium', sans-serif;
    font-size: 1.1rem;
    color: var(--yellow);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 5px; /* Efecto sutil al pasar el mouse */
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 22px;
    align-items: center;
}

.social-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    transition: all 0.25s ease;
}

.social-circle i {
    font-size: 1.25rem;
    line-height: 1;
}

.social-circle:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(222,125,17,0.22);
}


.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-family: 'FormaRegular';
}

/* ========================
   MODAL (Quiz / Lead)
======================== */

/* MEJORA LEAD MAGNET */
.modal {
    display: none; 
    position: fixed; 
    inset: 0;
    background: rgba(15, 31, 46, 0.78);
    z-index: 99999 !important;
    justify-content: flex-end;
    align-items: stretch;
    padding: 0;
}

.modal-content {
    background: #fff;
    padding: 28px 28px;
    border-radius: 28px 0 0 28px;
    text-align: center;
    width: min(100%, 420px);
    max-width: 420px;
    height: auto;
    max-height: 92vh;
    margin: auto 0;
    position: relative;
    border: none;
    box-shadow: -12px 0 40px rgba(15, 31, 46, 0.22);
    overflow-y: auto;
}

 .modal-content h2 {
    font-family: 'FormaMedium', sans-serif;
    color: var(--dark);
    font-size: 1.65rem;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.modal-content p {
    font-family: 'FormaRegular', sans-serif;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.lead-input {
    font-family: 'FormaRegular', sans-serif;
    height: 55px; /* MÃ¡s alto y cÃ³modo */
    border-radius: 15px;
    border: 2px solid #f0e8dd;
    background: #fff;
    transition: all 0.3s ease;
    margin: 20px 0 15px;
    font-size: 1.1rem;
    width: 100%;
    padding: 0 16px;
}

.lead-input:focus {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(222, 125, 17, 0.1);
}

.modal-content .btn-primary {
    width: 100%;
    height: 55px;
    border-radius: 15px;
    font-family: 'FormaMedium', sans-serif;
    font-size: 1.1rem;
    justify-content: center;
}

/* ========================
   STORE VIEW
======================== */
.store-hero { 
    text-align: center; 
    padding: 8px clamp(16px,4vw,40px) 14px; 
    background: #fff; 
}
.store-hero h1 { 
    font-family:'FormaMedium', sans-serif; 
    color: var(--red); 
    font-size: clamp(2rem,5vw,3.2rem); 
    margin-bottom:8px; 
}
.store-hero p { color: #666; font-size:1.5em; }
.store-filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 18px clamp(16px,4vw,40px); border-bottom: 1px solid #eee; }
.filter-btn { padding: 7px 20px; border-radius: 30px; border: 1.5px solid #ddd; background: #fff; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.85em; font-weight: 700; color: #777; transition: 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ========================
   PRIVACY VIEW
======================== */
.privacy-content { max-width: 820px; margin: 0 auto; padding: clamp(30px,5vw,60px) clamp(16px,4vw,40px); }
.privacy-content h1 { font-size: clamp(1.6em,4vw,2.2em); margin-bottom: 8px; }
.privacy-content h2 { font-size: 1.15em; margin-top: 28px; border-left: 4px solid var(--orange); padding-left: 12px; color: var(--dark); }
.privacy-content p, .privacy-content li { font-size: 0.92em; color: #444; line-height: 1.8; }
.privacy-back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 20px; cursor: pointer; color: var(--orange); font-weight: 700; background: none; border: none; font-family: 'DM Sans', sans-serif; font-size: 0.95em; }

/* ========================
   UTILITY
======================== */
.cta-center { text-align: center; padding: 10px clamp(16px,4vw,20px) clamp(40px,5vw,60px); }
.section-bg2 { background: var(--bg2); }

/* ========================
   NOTIFICATION TOAST
======================== */
.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    left: auto;
    bottom: auto;
    transform: translateX(20px);
    background: #fff;
    color: var(--dark);
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 0.9rem;
    font-family: 'FormaMedium', sans-serif;
    z-index: 5000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    box-shadow: 0 12px 35px rgba(15,31,46,0.18);
    border-left: 5px solid var(--orange);
    max-width: 320px;
    white-space: normal;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 560px) {
    .toast {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        transform: translateY(-12px);
    }

    .toast.show {
        transform: translateY(0);
    }
}


/* Esta clase harÃ¡ que los elementos aparezcan al hacer scroll */
.show-now {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: all !important;
}

/* SECCIÃ“N NUESTRA LABOR */
.labor-section {
    padding: clamp(40px, 6vw, 80px) clamp(16px, 5vw, 50px);
    background-color: #fff; /* Fondo blanco para que resalte */
}

.labor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.labor-card {
    background: var(--bg2);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.labor-card:hover {
    transform: translateY(-5px);
}

.labor-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.labor-content {
    padding: 24px;
}

.labor-content h3 {
    font-family: 'FormaMedium', sans-serif; /* Usamos tu fuente de tÃ­tulos */
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.labor-content p {
    font-family: 'FormaRegular', sans-serif; /* Usamos tu fuente de cuerpo */
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* DISEÃ‘O INTERNO DEL QUIZ */
#quizModalContent h2 {
    font-family: 'FormaMedium', sans-serif;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.6rem;
}

#quizModalContent p {
    font-family: 'FormaRegular', sans-serif;
    color: #666;
}

/* Pregunta (el texto de arriba) */
.quiz-question-text {
    font-family: 'FormaMedium', sans-serif;
    font-size: 1.2rem;
    margin: 25px 0 15px;
    color: var(--dark);
    display: block;
}

/* Botones de opciÃ³n mejorados */
.quiz-option-btn {
    width: 100%;
    background: #fff;
    border: 2px solid #f0e8dd;
    padding: 16px 20px;
    border-radius: 15px;
    margin-bottom: 12px;
    font-family: 'FormaRegular', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.quiz-option-btn:hover {
    border-color: var(--orange);
    background: #fff8f2;
    transform: translateX(5px);
}

.quiz-option-btn:active {
    transform: scale(0.98);
}
.product-image-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100%;
    height: 100%;
    background: transparent;
}

.product-image-carousel::-webkit-scrollbar {
    display: none;
}

.product-image-carousel img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    scroll-snap-align: start;
    padding: 0;
    margin: 0;
    display: block;
    background: transparent;
}

.product-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 360px;
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-12px) translateX(10px);
    pointer-events: none;
    transition: all 0.28s ease;
}

.product-toast.show {
    opacity: 1;
    transform: translateY(0) translateX(0);
    pointer-events: auto;
}

.product-toast-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #fff;
}

.product-toast-img {
    width: 74px;
    height: 74px;
    flex-shrink: 0;
    border-radius: 14px;
    object-fit: cover;
    background: #f6f3ef;
    border: 1px solid rgba(0,0,0,0.06);
}

.product-toast-content {
    flex: 1;
    min-width: 0;
}

.product-toast-title {
    font-family: 'FormaBold', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.2;
}

.product-toast-text {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.35;
    margin-bottom: 8px;
}

.product-toast-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-toast-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,133,49,0.12);
    color: var(--orange);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.82rem;
    font-family: 'FormaMedium', sans-serif;
}

.product-toast-price {
    font-size: 0.88rem;
    color: var(--red);
    font-family: 'FormaBold', sans-serif;
}

.product-toast-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.product-toast-close:hover {
    color: #333;
}

.product-toast-actions {
    display: flex;
    gap: 8px;
    padding: 0 14px 14px 14px;
    background: #fff;
}

.product-toast-btn {
    flex: 1;
    border: none;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 0.9rem;
    font-family: 'FormaMedium', sans-serif;
    cursor: pointer;
    transition: 0.2s ease;
}

.product-toast-btn.primary {
    background: var(--orange);
    color: #fff;
}

.product-toast-btn.primary:hover {
    filter: brightness(0.96);
}

.product-toast-btn.secondary {
    background: #f5f2ee;
    color: var(--dark);
}

.product-toast-btn.secondary:hover {
    background: #eee7df;
}

.product-toast-progress {
    height: 4px;
    background: rgba(212,133,49,0.15);
    overflow: hidden;
}

.product-toast-progress-bar {
    height: 100%;
    width: 100%;
    background: var(--orange);
    transform-origin: left;
    animation: toastProgress 4s linear forwards;
}

@keyframes toastProgress {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

@media (max-width: 560px) {
    .product-toast {
        top: 14px;
        right: 14px;
        left: 14px;
        width: auto;
    }

    .product-toast-inner {
        gap: 10px;
        padding: 12px;
    }

    .product-toast-img {
        width: 62px;
        height: 62px;
    }

    .product-toast-title {
        font-size: 0.95rem;
    }

    .product-toast-text {
        font-size: 0.85rem;
    }

    .product-toast-actions {
        flex-direction: column;
    }
}

/* ========================
   RESPONSIVE FINAL CANNIET
======================== */

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* TABLET */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 860px;
        padding-left: 24px;
        padding-right: 24px;
    }

    #favoritosGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 780px;
    }

    #favoritosGrid .product-card {
        max-width: 100%;
    }

    .about-grid,
    .labor-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .checkout-view-inner {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .order-summary {
        position: static;
    }
}

/* CELULAR */
@media (max-width: 700px) {
    header {
        height: 64px;
        padding: 0 16px;
    }

    .logo img {
        height: 42px;
    }

    .nav-desktop {
        display: none;
    }

    .nav-hamburger {
        display: block;
    }

    .cart-icon-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 92vh;
        padding: 90px 18px 50px;
        background-position: center;
    }

    .hero-logo {
        width: 170px;
    }

    .hero h1 {
        font-size: 2.45rem;
        line-height: 1.05;
    }

    .hero-sub {
        font-size: 1rem;
        max-width: 340px;
    }

    .hero-cta-group {
        width: 100%;
    }

    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .social-proof-bar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 18px;
    }

    .benefits-section {
        padding: 52px 18px;
    }

    .benefits-title span {
        font-size: 1rem;
        padding: 8px 16px;
        text-align: center;
    }

    .benefits-title h2 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .benefits-title p {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .benefit-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .sec-title {
        padding: 42px 18px 12px;
    }

    .sec-title h2 {
        font-size: 2rem;
        line-height: 1.12;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 430px;
        gap: 22px;
        padding: 22px 18px 44px;
    }

    .product-card {
        border-radius: 24px;
    }

    .card-img-wrap {
        height: 260px;
        border-radius: 24px 24px 0 0;
    }

    .card-body {
        padding: 26px 22px 24px;
    }

    .card-body h3 {
        font-size: 1.4rem;
        line-height: 1.15;
    }

    .product-subtitle {
        font-size: 0.95rem;
    }

    .product-presentation {
        font-size: 0.9rem;
        padding: 6px 14px;
    }

    .card-body .card-desc {
        font-size: 0.9rem;
        min-height: auto;
    }

    .price-current {
        font-size: 1.9rem;
    }

    .qty-btn {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .qty-input {
        width: 62px;
        height: 46px;
        font-size: 1.05rem;
    }

    .btn-add {
        height: 56px;
        font-size: 1rem;
    }

    #favoritosGrid {
        grid-template-columns: 1fr;
        max-width: 430px;
    }

    #favoritosGrid .product-card {
        max-width: 100%;
    }

    #favoritosGrid .card-img-wrap {
        height: 250px;
    }

    #favoritosGrid .card-body h3 {
        font-size: 1.35rem;
    }

    #favoritosGrid .price-current {
        font-size: 1.8rem;
    }

    .quiz-banner {
        margin: 30px 18px;
        padding: 42px 24px;
        border-radius: 24px;
    }

    .quiz-banner h2 {
        font-size: 2rem;
    }

    .testimonials-grid,
    .about-grid,
    .labor-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 34px 24px;
    }

    .a-img {
        max-width: 100%;
        height: 180px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    footer {
        padding: 48px 22px 28px;
    }

    .social-icons {
        justify-content: flex-start;
        gap: 12px;
    }

    .cart-panel {
        width: 100%;
    }

    .checkout-view-inner {
        grid-template-columns: 1fr;
        padding: 20px 16px 36px;
    }

    .checkout-section {
        padding: 22px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .shipping-opt,
    .pay-method {
        padding: 14px;
    }

    .ship-info,
    .pay-header {
        align-items: flex-start;
    }
}

/* CELULAR CHICO */
@media (max-width: 420px) {
    .hero h1 {
        font-size: 2.15rem;
    }

    .hero-logo {
        width: 150px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline-dark {
        width: 100%;
        justify-content: center;
    }

    .products-grid {
        padding-left: 14px;
        padding-right: 14px;
    }

    .card-img-wrap {
        height: 225px;
    }

    .card-body {
        padding: 24px 20px;
    }

    .card-body h3 {
        font-size: 1.28rem;
    }

    .price-current {
        font-size: 1.7rem;
    }

    .promo-box {
        flex-direction: column;
    }

    .promo-box button {
        width: 100%;
    }

    .checkout-steps {
        gap: 4px;
    }

    .step-pill {
        font-size: 0.72rem;
        padding: 8px 4px;
    }
}

.carousel-nav-hint {
    display: none !important; /* Esto quita el texto y el emoji definitivamente */
}

/* ========================
   NUESTRA ESENCIA - FIX FINAL
======================== */

.about-section {
    padding: 45px clamp(18px, 5vw, 50px) 70px !important;
    overflow: hidden !important;
}

.about-section .sec-title {
    padding-top: 0 !important;
    padding-bottom: 10px !important;
    text-align: center !important;
}

.about-grid {
    width: 100% !important;
    max-width: 1100px !important;
    margin: 38px auto 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 28px !important;
}

.about-card {
    flex: 0 1 320px !important;
    width: 320px !important;
    max-width: 320px !important;
    min-width: 280px !important;
    padding: 34px 28px !important;
    border-radius: 24px !important;
    text-align: center !important;
}

.a-img {
    width: 100% !important;
    max-width: 240px !important;
    height: 160px !important;
    margin: 0 auto 26px !important;
    border-radius: 22px !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.a-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
}

.about-card h3 {
    font-size: 1.35rem !important;
    margin-bottom: 16px !important;
    line-height: 1.15 !important;
}

.about-card p {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
}

/* Tablet */
@media (max-width: 900px) {
    .about-card {
        flex: 0 1 300px !important;
        width: 300px !important;
        max-width: 300px !important;
    }

    .a-img {
        max-width: 220px !important;
        height: 150px !important;
    }
}

/* Celular */
@media (max-width: 560px) {
    .about-section {
        padding: 40px 18px 60px !important;
    }

    .about-grid {
        gap: 24px !important;
        margin-top: 30px !important;
    }

    .about-card {
        flex: 0 1 100% !important;
        width: 100% !important;
        max-width: 340px !important;
        min-width: 0 !important;
        padding: 32px 24px !important;
    }

    .a-img {
        max-width: 230px !important;
        height: 150px !important;
    }
}
/* ========================
   PRODUCT CARDS - 20% MÃS COMPACTAS
======================== */

.products-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr)) !important;
    gap: 24px !important;
    justify-content: stretch !important;
}

.product-card {
    max-width: none !important;
    border-radius: 22px !important;
    border: 1px solid #efe6da !important;
    box-shadow: 0 10px 26px rgba(15,31,46,0.05) !important;
    overflow: hidden !important;
}

.card-img-wrap {
    height: 230px !important;
    background: #f5f2ee !important;
    border-radius: 22px 22px 0 0 !important;
}


.product-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 6px !important;
}

.product-presentation {
    font-size: 0.95rem !important;
    padding: 5px 12px !important;
    margin-bottom: 12px !important;
}

.card-body .card-desc {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    min-height: 42px !important;
    margin-bottom: 18px !important;
}

.price-current {
    font-size: 1.6rem !important;
    letter-spacing: -0.03em !important;
}

.price-row {
    margin-bottom: 12px !important;
}

.qty-controls {
    gap: 8px !important;
    margin: 10px 0 16px !important;
}

.qty-btn {
    width: 34px !important;
    height: 34px !important;
    border-radius: 10px !important;
    font-size: 0.85rem !important;
}

.qty-input {
    width: 50px !important;
    height: 34px !important;
    font-size: 0.9rem !important;
}

.btn-add {
    height: 48px !important;
    border-radius: 999px !important;
    font-size: 0.92rem !important;
}

.badge {
    font-size: 0.62rem !important;
    padding: 5px 10px !important;
}

.stock-indicator {
    font-size: 0.62rem !important;
    padding: 4px 9px !important;
}

/* ========================
   TIENDA - IMÃGENES COMPLETAS LATERALES
======================== */

#tiendaGrid .card-img-wrap {
    height: 260px !important;
    background: #f4f0eb !important;
    overflow: hidden !important;
}

#tiendaGrid .product-image-carousel {
    width: 100% !important;
    height: 100% !important;
}

#tiendaGrid .product-image-carousel img,
#tiendaGrid .card-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ========================
   QUIZ DOG IMAGE
======================== */

.quiz-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 auto;
}

.quiz-banner {
    position: relative !important;
    overflow: visible !important;
}

/* Perrito saliendo de la esquina superior derecha */
.quiz-dog-img {
    position: absolute !important;
    right: 35px !important;
    top: -175px !important;
    width: 170px !important;
    max-width: none !important;
    height: auto !important;
    z-index: 3 !important;
    object-fit: contain !important;
    background: transparent !important;
    filter: drop-shadow(0 14px 24px rgba(0,0,0,0.22));
    pointer-events: none;
    border-radius: 0;
}

/* ========================
   WALL OF FAME DOG IMAGE
======================== */

.wall-of-fame {
    position: relative !important;
    overflow: hidden !important;
    padding: clamp(62px, 8vw, 96px) clamp(16px, 4vw, 20px) clamp(82px, 9vw, 120px) !important;
    text-align: center;
    background:
        radial-gradient(circle at 8% 10%, rgba(231,188,21,.20), transparent 26%),
        linear-gradient(135deg, #fff, #f7efe5) !important;
}

.wall-dog-img {
    position: absolute !important;
    right: 20px !important;
    bottom: -35px !important;
    width: clamp(190px, 22vw, 310px) !important;
    height: auto !important;
    z-index: 3 !important;
    object-fit: contain !important;
    background: transparent !important;
    filter: drop-shadow(0 16px 26px rgba(0,0,0,0.18));
    pointer-events: none;
}

.promo-msg {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #f0fff5;
    border: 1px solid rgba(37, 211, 102, 0.35);
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--green);
    font-family: 'FormaMedium', sans-serif;
}

.remove-coupon-btn {
    background: transparent;
    border: none;
    color: var(--red);
    font-family: 'FormaMedium', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.remove-coupon-btn:hover {
    color: var(--dark);
}

/* ==============================
   DISTRIBUIDORES - FUNCIONA EN ANAQUEL
============================== */

body.distributor-page .dist-shelf-section {
    position: relative;
    overflow: hidden;
    background:
        url('https://i.postimg.cc/xjwnhnBn/Chat-GPT-Image-9-jun-2026-10-34-47-a-m.png') center / cover no-repeat;
}

body.distributor-page .dist-shelf-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    max-width: 1180px;
    margin: 44px auto 0;
}

body.distributor-page .dist-shelf-card {
    background: #ffffff;
    border: 1px solid rgba(15,31,46,0.08);
    border-radius: 28px;
    padding: 30px 26px;
    box-shadow: 0 16px 40px rgba(15,31,46,0.07);
    min-height: 270px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.distributor-page .dist-shelf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 58px rgba(15,31,46,0.11);
}

body.distributor-page .dist-shelf-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(222,125,17,0.11);
    color: var(--dist-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 22px;
}

body.distributor-page .dist-shelf-card h3 {
    font-family: 'FormaMedium', sans-serif;
    color: var(--dist-dark);
    font-size: 1.25rem;
    line-height: 1.16;
    margin: 0 0 12px;
}

body.distributor-page .dist-shelf-card p {
    color: #5f5f5f;
    font-size: 0.95rem;
    line-height: 1.58;
    text-align: left;
    margin: 0;
}

/* Responsive */
@media (max-width: 980px) {
    body.distributor-page .dist-shelf-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    body.distributor-page .dist-shelf-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    body.distributor-page .dist-shelf-card {
        min-height: auto;
    }
}

/* ==============================
DISTRIBUIDORES - AJUSTE HERO ORDENADO
Pegar al final del CSS
============================== */

body.distributor-page .dist-hero-premium {
min-height: 86vh !important;
padding: calc(var(--header-h) + 30px) clamp(24px, 5vw, 70px) 56px !important;
}

body.distributor-page .dist-hero-premium-inner {
grid-template-columns: minmax(0, 0.9fr) minmax(480px, 0.85fr) !important;
gap: clamp(28px, 4vw, 48px) !important;
align-items: start !important;
}

body.distributor-page .dist-hero-copy h1 {
font-size: clamp(3.1rem, 4.7vw, 4.6rem) !important;
letter-spacing: 0.02em !important;
line-height: 1.14 !important;
max-width: 640px !important;
margin-bottom: 24px !important;
}

body.distributor-page .dist-hero-copy p {
max-width: 600px !important;
font-size: 1.03rem !important;
line-height: 1.65 !important;
}



/* Ordenar los beneficios superiores */
body.distributor-page .dist-hero-trust {
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
gap: 12px !important;
max-width: 590px !important;
margin-top: 24px !important;
}

body.distributor-page .dist-hero-trust div {
min-width: 0 !important;
min-height: 78px !important;
padding: 16px 18px !important;
border-radius: 18px !important;
}

body.distributor-page .dist-hero-trust strong {
font-size: 1.25rem !important;
}

body.distributor-page .dist-hero-trust span {
font-size: 0.86rem !important;
}

/* Hacer mÃ¡s discreta la lÃ­nea de entregables */
body.distributor-page .dist-hero-deliverables,
body.distributor-page .dist-deliverables,
body.distributor-page .dist-hero-includes {
margin-top: 22px !important;
}

/* BotÃ³n WhatsApp mÃ¡s a la esquina */
body.distributor-page .dist-floating-whatsapp {
right: 26px !important;
bottom: 28px !important;
padding: 13px 18px !important;
border-radius: 999px !important;
}

/* Evitar que el WhatsApp comÃºn estorbe si aparece */
body.distributor-page .whatsapp-float {
right: 24px !important;
bottom: 24px !important;
}

/* Responsive */
@media (max-width: 1050px) {
body.distributor-page .dist-hero-premium-inner {
    grid-template-columns: 1fr !important;
    align-items: center !important;
}

body.distributor-page .dist-hero-copy {
    text-align: center !important;
}

body.distributor-page .dist-hero-visual {
    margin-top: 10px !important;
    min-height: 560px !important;
}

body.distributor-page .dist-info-card {
    bottom: 70px !important;
    right: 50% !important;
    transform: translateX(50%) !important;
}
}

@media (max-width: 760px) {
body.distributor-page .dist-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.25rem) !important;
}

body.distributor-page .dist-hero-visual {
    min-height: 520px !important;
    max-width: 390px !important;
}

body.distributor-page .dist-product-one {
    width: 180px !important;
    height: 245px !important;
    left: 10px !important;
    top: 8px !important;
}

body.distributor-page .dist-product-two {
    width: 180px !important;
    height: 245px !important;
    right: 8px !important;
    top: 18px !important;
}

body.distributor-page .dist-product-three {
    width: 205px !important;
    height: 275px !important;
    left: 88px !important;
    top: 150px !important;
}

body.distributor-page .dist-info-card {
    width: calc(100% - 24px) !important;
    right: 12px !important;
    bottom: 24px !important;
    transform: none !important;
}

body.distributor-page .dist-hero-trust {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
}

body.distributor-page .dist-floating-whatsapp {
    right: 16px !important;
    bottom: 18px !important;
}
}


/* ========================
TIENDA - FONDO DECORATIVO
======================== */

body.store-page #store-view {
display: block;
position: relative;
min-height: 100vh;
overflow: hidden;
background: #fcfaf7;
}

body.store-page .store-bg-art {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
overflow: hidden;
pointer-events: none;
z-index: 0;
}

body.store-page .bg-pack {
position: absolute;
display: block;
width: 290px;
max-width: none;
height: auto;
opacity: 0.18;
z-index: 0;
filter: saturate(1.05);
}

/* Posiciones individuales */
body.store-page .bg-pack-1 {
top: 90px;
left: -90px;
transform: rotate(-14deg);
}

body.store-page .bg-pack-2 {
top: 210px;
right: -90px;
transform: rotate(12deg);
}

body.store-page .bg-pack-3 {
top: 590px;
left: -70px;
transform: rotate(10deg);
}

body.store-page .bg-pack-4 {
top: 780px;
right: -80px;
transform: rotate(-12deg);
}

body.store-page .bg-pack-5 {
top: 1180px;
left: -85px;
transform: rotate(16deg);
}

body.store-page .bg-pack-6 {
top: 1400px;
right: -90px;
transform: rotate(-16deg);
}

/* Contenido encima del fondo */
body.store-page .store-hero,
body.store-page .store-filter-bar,
body.store-page .products-grid,
body.store-page .cta-center {
position: relative;
z-index: 2;
}

/* Ajuste visual del encabezado de tienda */
body.store-page .store-hero {
background: transparent;
padding-top: 28px;
}

/* Mobile */
@media (max-width: 768px) {
body.store-page .bg-pack {
    width: 200px;
    opacity: 0.12;
}

body.store-page .bg-pack-1 {
    top: 95px;
    left: -65px;
}

body.store-page .bg-pack-2 {
    top: 230px;
    right: -65px;
}

body.store-page .bg-pack-3 {
    top: 680px;
    left: -55px;
}

body.store-page .bg-pack-4 {
    top: 1050px;
    right: -60px;
}

body.store-page .bg-pack-5,
body.store-page .bg-pack-6 {
    display: none;
}
}

#leadMagnet .modal-content {
animation: slideInLead 0.35s ease-out;
}

@keyframes slideInLead {
from {
    transform: translateX(100%);
    opacity: 0.98;
}
to {
    transform: translateX(0);
    opacity: 1;
}
}

@media (max-width: 768px) {
.modal {
    justify-content: center;
    align-items: flex-end;
}

.modal-content {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 92vh;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 30px rgba(15, 31, 46, 0.18);
}

#leadMagnet .modal-content {
    animation: slideUpLead 0.35s ease-out;
}

@keyframes slideUpLead {
    from {
        transform: translateY(100%);
        opacity: 0.98;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
}

/* ========================
LEAD MAGNET - CLASES EXISTENTES DEL JS
======================== */

.lead-side-modal-no-image {
min-height: auto;
display: flex;
align-items: center;
justify-content: center;
padding: 22px 18px;
position: relative;
}
.lead-side-content {
width: 100%;
max-width: 360px;
margin: 0 auto;
text-align: center;
}

.lead-side-logo {
width: 115px;
max-width: 115px;
height: auto;
display: block;
margin: 0 auto 16px;
}
.lead-side-tag {
display: inline-block;
font-family: 'FormaMedium', sans-serif;
color: var(--orange);
font-size: 0.78rem;
letter-spacing: 1.1px;
text-transform: uppercase;
margin-bottom: 12px;
}

.lead-benefits {
display: grid;
gap: 8px;
margin: 18px 0 20px;
}

.lead-benefits div {
font-family: 'FormaMedium', sans-serif;
color: #444;
font-size: 0.95rem;
line-height: 1.3;
}

.lead-benefits span {
color: var(--orange);
font-weight: 700;
}

.lead-input-wrap {
text-align: left;
margin-top: 14px;
}

.lead-input-wrap label {
display: block;
font-family: 'FormaMedium', sans-serif;
color: var(--dark);
font-size: 0.9rem;
margin-bottom: 7px;
}

.lead-input-wrap small {
display: block;
text-align: center;
color: #777;
font-size: 0.78rem;
margin-top: 8px;
}

.lead-side-btn {
width: 100%;
min-height: 54px;
border: none;
border-radius: 15px;
background: linear-gradient(135deg, var(--red), var(--orange));
color: #fff;
font-family: 'FormaMedium', sans-serif;
font-size: 1rem;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 12px 28px rgba(208, 33, 26, 0.22);
margin-top: 14px;
cursor: pointer;
}

.lead-side-btn:hover {
transform: translateY(-2px);
box-shadow: 0 16px 34px rgba(208, 33, 26, 0.30);
}

.lead-privacy {
font-size: 0.78rem !important;
color: #8b7b68 !important;
margin-top: 14px !important;
line-height: 1.4 !important;
}

.lead-privacy span {
color: var(--red);
font-family: 'FormaMedium', sans-serif;
text-decoration: underline;
text-underline-offset: 3px;
cursor: pointer;
}

.lead-side-close {
position: absolute;
top: 22px;
right: 22px;
width: 38px;
height: 38px;
border: none;
border-radius: 50%;
background: rgba(15, 31, 46, 0.08);
color: var(--dark);
font-family: Arial, sans-serif;
font-size: 1.6rem;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
}

.lead-side-close:hover {
background: var(--red);
color: #fff;
}

/* ========================
CHECKOUT - MENSAJE DE CONFIANZA
======================== */

.checkout-trust-banner {
margin-top: 18px;
background: linear-gradient(135deg, #ffe4c2, #fff3e3);
border: 1.5px solid rgba(222, 125, 17, 0.48);
border-radius: 18px;
padding: 18px 20px;
display: flex;
align-items: flex-start;
gap: 14px;
box-shadow: 0 10px 28px rgba(15,31,46,0.06);
}

.checkout-trust-icon {
width: 42px;
height: 42px;
border-radius: 14px;
background: rgba(222, 125, 17, 0.12);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.35rem;
flex-shrink: 0;
}

.checkout-trust-banner strong {
display: block;
font-family: 'FormaMedium', sans-serif;
color: var(--dark);
font-size: 1.05rem;
margin-bottom: 4px;
}

.checkout-trust-banner p {
font-family: 'FormaRegular', sans-serif;
color: #666;
font-size: 0.92rem;
line-height: 1.45;
margin: 0;
}

/* ========================
CHECKOUT - AVISO DE PAGO
======================== */

.payment-warning {
margin-top: 14px;
background: linear-gradient(135deg, #fff1df, #fff8f0);
border: 1.5px solid rgba(222, 125, 17, 0.38);
border-left: 6px solid var(--orange);
border-radius: 16px;
padding: 16px;
}

.payment-warning-head strong {
display: block;
font-family: 'FormaMedium', sans-serif;
color: var(--red);
font-size: 1rem;
margin: 0;
}

.payment-warning-item strong {
display: inline;
color: var(--red);
font-family: 'FormaMedium', sans-serif;
font-size: inherit;
}

.payment-warning p {
font-family: 'FormaRegular', sans-serif;
color: #4f4f4f;
font-size: 0.9rem;
line-height: 1.45;
margin: 0;
}

.payment-warning-head {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 12px;
}

.payment-warning-icon {
width: 28px;
height: 28px;
border-radius: 50%;
background: rgba(208, 33, 26, 0.12);
color: var(--red);
display: flex;
align-items: center;
justify-content: center;
font-family: 'FormaMedium', sans-serif;
font-size: 1rem;
flex-shrink: 0;
}

.payment-warning-item {
display: flex;
align-items: flex-start;
gap: 10px;
background: rgba(255, 255, 255, 0.55);
border-radius: 12px;
padding: 14px 14px;
margin-bottom: 8px;
}

.payment-warning-number {
width: 24px;
height: 24px;
border-radius: 50%;
background: var(--orange);
color: #fff;
font-family: 'FormaMedium', sans-serif;
font-size: 0.82rem;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 1px;
}

.payment-warning-note {
margin-top: 10px;
font-family: 'FormaRegular', sans-serif;
font-size: 0.8rem;
line-height: 1.4;
color: #7a6a58;
}

.payment-warning-item p {
margin: 0;
}

/* ========================
TIENDA - LAYOUT TIPO ECOMMERCE
======================== */

.store-shop-layout {
width: min(100%, 1240px);
margin: 0 auto;
padding: 30px clamp(16px, 4vw, 34px) 60px;
display: grid;
grid-template-columns: 240px 1fr;
gap: 28px;
position: relative;
z-index: 2;
}

.store-sidebar {
position: relative;
}

.store-sidebar-inner {
position: sticky;
top: 88px;
background: rgba(255, 255, 255, 0.88);
backdrop-filter: blur(10px);
border: 1px solid #f0e4d6;
border-radius: 24px;
padding: 26px 22px;
box-shadow: 0 14px 36px rgba(15,31,46,0.06);
}

.store-sidebar-label {
display: block;
font-family: 'FormaMedium', sans-serif;
color: var(--orange);
text-transform: uppercase;
letter-spacing: 1.1px;
font-size: 0.9rem;
margin-bottom: 14px;
}

.store-sidebar h3 {
font-family: 'FormaMedium', sans-serif;
color: var(--dark);
font-size: 1.05rem;
line-height: 1.2;
margin-bottom: 18px;
}

.store-sidebar .store-filter-bar {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
padding: 0;
border-bottom: none;
}

.store-sidebar .filter-btn {
width: 100%;
justify-content: center;
text-align: center;
padding: 0 18px;
font-family: 'FormaMedium', sans-serif;
background: #fff;
border: 2px solid #d9d9d9;
color: #7b7b7b;
box-shadow: none;
min-height: 48px;
border-radius: 16px;
font-size: 0.86rem;
}

.store-sidebar .filter-btn:first-child {
grid-column: 1 / -1;
}

.store-sidebar .filter-btn.active {
background: var(--orange);
color: #fff;
border-color: var(--orange);
box-shadow: 0 10px 22px rgba(222,125,17,0.20);
}

.store-sidebar-help {
margin-top: 18px;
background: #fff8ef;
border: 1px solid rgba(222,125,17,0.18);
border-radius: 18px;
padding: 18px 16px;
}

.store-sidebar-help strong {
display: block;
font-family: 'FormaMedium', sans-serif;
color: var(--dark);
font-size: 0.95rem;
margin-bottom: 5px;
}

.store-sidebar-help p {
font-family: 'FormaRegular', sans-serif;
color: #6b6258;
font-size: 0.82rem;
line-height: 1.4;
margin: 0;
}

.store-main-content {
min-width: 0;
}

.store-main-content .store-hero {
text-align: left;
background: transparent;
padding: 4px 0 20px;
}

.store-main-content .store-hero h1 {
font-family: 'FormaMedium', sans-serif;
color: var(--dark);
font-size: clamp(2.4rem, 5vw, 4.3rem);
line-height: 0.95;
margin-bottom: 10px;
}

.store-main-content .store-hero p {
color: #666;
font-size: 1.1rem;
max-width: 560px;
}

.store-main-content .products-grid {
padding-left: 0;
padding-right: 0;
}

/* Mobile */
@media (max-width: 860px) {
.store-shop-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 22px;
}

.store-sidebar-inner {
    position: relative;
    top: auto;
}

.store-sidebar .store-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.store-sidebar .filter-btn {
    width: auto;
    text-align: center;
    justify-content: center;
    padding: 9px 15px;
}

.store-sidebar-help {
    display: none;
}

.store-main-content .store-hero {
    text-align: center;
    padding-top: 8px;
}

.store-main-content .store-hero p {
    margin: 0 auto;
}
}

.store-sidebar-help a {
display: inline-flex;
margin-top: 10px;
color: var(--orange);
font-family: 'FormaMedium', sans-serif;
font-size: 0.84rem;
text-decoration: none;
}

.store-sidebar-help a:hover {
color: var(--red);
text-decoration: underline;
text-underline-offset: 3px;
}

/* ========================
TIENDA - ORDEN Y CONTADOR
======================== */

.store-filter-group {
margin-bottom: 22px;
}

.store-filter-title {
display: block;
font-family: 'FormaMedium', sans-serif;
color: #8b7b68;
font-size: 0.76rem;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 10px;
}

.store-sort-select {
width: 100%;
height: 46px;
border-radius: 14px;
border: 1.5px solid #eadfce;
background: #fff;
color: var(--dark);
padding: 0 14px;
font-family: 'FormaMedium', sans-serif;
font-size: 0.9rem;
outline: none;
cursor: pointer;
}

.store-sort-select:focus {
border-color: var(--orange);
box-shadow: 0 0 0 4px rgba(222, 125, 17, 0.12);
}

.store-results-count {
font-family: 'FormaMedium', sans-serif;
color: #7a6a58;
font-size: 0.92rem;
margin: 0 0 14px;
}

.store-sort-group {
margin-top: 26px;
}

/* ========================
HOME - FAVORITOS DE LA MANADA
======================== */

.favorites-section {
background: #fff;
padding: 70px clamp(16px, 5vw, 60px);
}

.favorites-header {
max-width: 760px;
margin: 0 auto 24px;
text-align: center;
}

.favorites-label {
display: inline-block;
font-family: 'FormaMedium', sans-serif;
color: var(--orange);
font-size: 0.82rem;
text-transform: uppercase;
letter-spacing: 1.2px;
margin-bottom: 12px;
}

.favorites-header h2 {
font-family: 'FormaMedium', sans-serif;
color: var(--dark);
font-size: clamp(2rem, 4.6vw, 3.3rem);
line-height: 1.05;
margin-bottom: 12px;
}

.favorites-header p {
font-family: 'FormaRegular', sans-serif;
color: #666;
font-size: 1.05rem;
line-height: 1.55;
max-width: 620px;
margin: 0 auto;
}

.favorites-section #favoritosGrid {
padding-top: 12px;
}

@media (max-width: 760px) {
.favorites-section {
    padding: 54px 18px;
}

.favorites-highlights {
    grid-template-columns: 1fr;
    max-width: 420px;
}
}


/* ==============================
DISTRIBUIDORES - AJUSTE VISUAL PAQUETES + CARD
============================== */

body.distributor-page .dist-hero-visual,
body.distributor-page .dist-product-orbit {
overflow: visible !important;
}

/* Dar mÃ¡s espacio real al Ã¡rea visual derecha */
body.distributor-page .dist-hero-visual {
max-width: 720px !important;
min-height: 650px !important;
}

/* Paquete izquierdo */
body.distributor-page .dist-product-one {
left: 50px !important;
top: -95px !important;
width: 350px !important;
height: 440px !important;
transform: rotate(-20deg) !important;
}

/* Paquete central */
body.distributor-page .dist-product-three {
left: 275px !important;
top: -90px !important;
width: 360px !important;
height: 450px !important;
transform: rotate(26deg) !important;
}

/* Cuadro azul mÃ¡s bajo y un poco mÃ¡s compacto */
body.distributor-page .dist-info-card {
right: 18px !important;
bottom: 64px !important;
width: 390px !important;
padding: 28px 30px !important;
border-radius: 30px !important;
}

/* Texto del cuadro mÃ¡s controlado */
body.distributor-page .dist-info-card h3 {
font-size: 1.45rem !important;
line-height: 1.18 !important;
}

body.distributor-page .dist-info-card li {
font-size: 0.96rem !important;
line-height: 1.45 !important;
margin-bottom: 10px !important;
}


/* ==============================
HEADER - NAV CENTRADO EN TIENDA
============================== */

body.store-page header {
position: fixed !important;
}

/* Centrar menÃº independientemente del logo y carrito */
body.store-page .nav-desktop {
position: absolute !important;
left: 50% !important;
transform: translateX(-50%) !important;
justify-content: center !important;
}

/* Mantener logo a la izquierda */
body.store-page .logo {
position: relative !important;
z-index: 2 !important;
}

/* Mantener hamburger/carrito sin empujar el menÃº */
body.store-page .header-right {
margin-left: auto !important;
position: static !important;
}
/* ==============================
BOTÃ“N CLIP COMO MÃ‰TODO DE PAGO
============================== */
.clip-method-full {
border: none !important;
background: transparent !important;
padding: 0 !important;
box-shadow: none !important;
cursor: default;
margin-top: 6px;
}

.clip-method-full:hover,
.clip-method-full.selected {
border: none !important;
background: transparent !important;
box-shadow: none !important;
}

.clip-method-full input {
display: none;
}

.clip-full-button {
width: 100%;
min-height: 76px;
background: #ff2b00;
border: none;
border-radius: 14px;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 14px 28px rgba(255, 43, 0, 0.22);
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.clip-full-button img {
width: 260px;
max-width: 78%;
height: auto;
display: block;
}

.clip-full-button:hover {
transform: translateY(-2px);
box-shadow: 0 18px 34px rgba(255, 43, 0, 0.28);
}

.clip-full-button:disabled {
opacity: 0.65;
cursor: not-allowed;
transform: none;
}

.clip-method-full.selected .clip-full-button {
outline: 3px solid #e28112;
outline-offset: 4px;
}



#clipProcessingOverlay {
position: fixed;
inset: 0;
background: rgba(15, 31, 46, 0.78);
z-index: 999999;
display: none;
align-items: center;
justify-content: center;
padding: 24px;
}

.clip-processing-box {
width: min(100%, 430px);
background: #fff;
border-radius: 28px;
padding: 36px 28px;
text-align: center;
box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}

.clip-processing-box h2 {
color: var(--dark);
font-family: 'FormaMedium', sans-serif;
font-size: 1.7rem;
margin: 18px 0 10px;
}

.clip-processing-box p {
color: #555;
font-size: 1rem;
line-height: 1.5;
margin-bottom: 10px;
}

.clip-processing-box small {
color: #888;
}

.clip-processing-spinner {
width: 54px;
height: 54px;
border: 5px solid #f1e7db;
border-top-color: var(--orange);
border-radius: 50%;
margin: 0 auto;
animation: clipSpin 0.9s linear infinite;
}

@keyframes clipSpin {
to {
    transform: rotate(360deg);
}
}

/* FIX WHATSAPP INDEX: oculto al inicio, visible al hacer scroll */
body:not(.store-page) #whatsappIndexFloat.whatsapp-float {
position: fixed !important;
right: 22px !important;
bottom: 22px !important;
width: 62px !important;
height: 62px !important;
border-radius: 50% !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
background: #25D366 !important;
color: #ffffff !important;
font-size: 34px !important;
line-height: 1 !important;
text-decoration: none !important;
z-index: 999999 !important;
opacity: 0 !important;
visibility: hidden !important;
pointer-events: none !important;
transform: translateY(16px) !important;
transition: opacity .3s ease, transform .3s ease, visibility .3s ease !important;
}

body:not(.store-page) #whatsappIndexFloat.whatsapp-float.wa-index-visible {
opacity: 1 !important;
visibility: visible !important;
pointer-events: auto !important;
transform: translateY(0) !important;
}

body:not(.store-page) .whatsapp-tooltip.wa-index-visible {
display: block !important;
z-index: 999998 !important;
}

/* FIX WhatsApp flotante index */
#whatsapp-float-index {
position: fixed !important;
right: 22px !important;
bottom: 22px !important;
width: 60px !important;
height: 60px !important;
background: #25D366 !important;
color: #ffffff !important;
border-radius: 50% !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
font-size: 32px !important;
text-decoration: none !important;
z-index: 999999 !important;
opacity: 0 !important;
visibility: hidden !important;
pointer-events: none !important;
transform: translateY(12px) !important;
transition: opacity 0.3s ease, transform 0.3s ease !important;
}

#whatsapp-float-index.wa-visible {
opacity: 1 !important;
visibility: visible !important;
pointer-events: auto !important;
transform: translateY(0) !important;
}

@media (max-width: 768px) {
.modal {
    justify-content: center;
    align-items: flex-end;
}

.modal-content {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 88vh;
    padding: 24px 22px;
    border-radius: 24px 24px 0 0;
    margin: 0;
    overflow-y: auto;
}

.lead-side-modal-no-image {
    padding: 18px 12px;
}

.lead-side-logo {
    width: 95px;
    max-width: 95px;
    margin-bottom: 12px;
}

.modal-content h2 {
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.modal-content p {
    font-size: 0.92rem;
    line-height: 1.35;
}

.lead-benefits {
    gap: 6px;
    margin: 14px 0 14px;
}

.lead-benefits div {
    font-size: 0.88rem;
}

.lead-input {
    height: 48px;
    margin: 12px 0 10px;
    font-size: 1rem;
}

.lead-side-btn {
    min-height: 48px;
    margin-top: 10px;
}

.lead-privacy {
    margin-top: 10px !important;
    font-size: 0.72rem !important;
}

.lead-side-close {
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
}
}

/* =========================
ENCUÃ‰NTRANOS
========================= */

.encuentranos-section {
background: #f7f4ef;
padding: 45px 20px 55px;
}

.encuentranos-container {
max-width: 1100px;
margin: 0 auto;
text-align: center;
}

.encuentranos-section h2 {
font-family: 'FormaMedium', sans-serif;
font-size: clamp(1.8rem, 3vw, 2.6rem);
color: var(--dark);
margin-bottom: 28px;
letter-spacing: -0.03em;
}

.encuentranos-grid {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.encuentranos-card {
background: #fff;
width: 280px;
height: 130px;
border-radius: 18px;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.encuentranos-card:hover {
transform: translateY(-4px);
box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.petco-logo-text {
font-family: Arial, Helvetica, sans-serif;
font-size: 4.2rem;
font-weight: 700;
color: #00205b;
letter-spacing: -0.08em;
line-height: 1;
}

@media (max-width: 768px) {
.encuentranos-section {
    padding: 38px 18px 46px;
}

.encuentranos-section h2 {
    font-size: 1.9rem;
    margin-bottom: 22px;
}

.encuentranos-card {
    width: 100%;
    max-width: 300px;
    height: 115px;
    border-radius: 16px;
}

.petco-logo-text {
    font-size: 3.6rem;
}
}


/* ==============================
CARRITO FLOTANTE TIENDA
============================== */

body.store-page .store-cart-floating {
position: fixed;
right: 28px;
bottom: 28px;
width: 64px;
height: 64px;
border-radius: 50%;
border: none;
background: var(--dark);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
cursor: pointer;
box-shadow: 0 14px 34px rgba(15, 31, 46, 0.28);
transition: background 0.2s ease, transform 0.2s ease;
}

body.store-page .store-cart-floating:hover {
background: var(--orange);
transform: translateY(-3px);
}

body.store-page .store-cart-icon {
width: 30px;
height: 30px;
background: #fff;
display: block;

-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h8.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") center / contain no-repeat;

mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h8.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.store-page .store-cart-floating #cart-count-badge {
position: absolute;
top: -8px;
right: -8px;
width: 27px;
height: 27px;
border-radius: 50%;
background: var(--red);
color: #fff;
font-family: 'FormaMedium', sans-serif;
font-size: 0.78rem;
line-height: 1;
display: none;
align-items: center;
justify-content: center;
font-weight: 700;
box-shadow: 0 6px 14px rgba(208, 33, 26, 0.32);
}

body.store-page:has(.cart-panel.open) .store-cart-floating,
body.store-page:has(.cart-overlay[style*="display: block"]) .store-cart-floating {
display: none;
}

@media (max-width: 700px) {
body.store-page .store-cart-floating {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
}

body.store-page .store-cart-icon {
    width: 26px;
    height: 26px;
}

body.store-page .store-cart-floating #cart-count-badge {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
}
}

/* =========================================================
EXPERIENCIA CANNIET 2026 - diseÃ±o premium sin tocar flujo
========================================================= */
body { background: var(--bg); }
main p,
section p,
.hero p,
.about-section p,
.labor-section p,
.faq-card p,
.detail-section-block p {
    text-align: justify;
}
button, input, select { font-family: 'FormaRegular', sans-serif; }

/* INDEX: portada y secciones mÃ¡s editoriales */
.hero {
min-height: 100vh;
padding: clamp(92px, 10vh, 130px) 22px 54px;
background:
    radial-gradient(circle at 74% 40%, rgba(231,188,21,.14), transparent 28%),
    linear-gradient(115deg, rgba(15,31,46,.86), rgba(15,31,46,.70) 48%, rgba(149,91,26,.58)),
    url('https://i.postimg.cc/hjgCDDfh/imagenweb1.png');
background-size: cover;
background-position: center;
}
.hero::after {
content: '';
position: absolute;
left: 50%;
bottom: 22px;
width: 24px;
height: 38px;
border: 1px solid rgba(255,255,255,.52);
border-radius: 999px;
transform: translateX(-50%);
opacity: .75;
}
.hero::before {
content: '';
position: absolute;
inset: auto auto 31px 50%;
width: 4px;
height: 4px;
background: #fff;
border-radius: 50%;
transform: translateX(-50%);
z-index: 2;
}
.hero-logo {
background: transparent !important;
border-radius: 0 !important;
padding: 0 !important;
box-shadow: none !important;
filter: drop-shadow(0 14px 22px rgba(0,0,0,.28));
}
.hero-eyebrow { box-shadow: 0 12px 28px rgba(0,0,0,.16); }
.hero h1 {
max-width: 980px;
line-height: .96;
letter-spacing: -.045em;
margin-inline: auto;
}
.hero-sub {
max-width: 760px;
line-height: 1.42;
font-size: clamp(1rem, 1.7vw, 1.25rem);
text-align: center;
}
.hero-cta-group { gap: 16px; }
.btn-primary,
.btn-secondary,
.btn-outline-dark,
.quiz-content button {
border-radius: 999px !important;
min-height: 48px;
padding: 13px 24px !important;
font-family: 'FormaMedium', sans-serif;
letter-spacing: .01em;
transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary {
background: linear-gradient(135deg, var(--orange), #f49b22) !important;
color: #fff !important;
border: 1px solid rgba(255,255,255,.18) !important;
box-shadow: 0 16px 32px rgba(222,125,17,.34) !important;
}
.btn-secondary {
background: rgba(255,255,255,.14) !important;
color: #fff !important;
border: 1px solid rgba(255,255,255,.62) !important;
backdrop-filter: blur(10px);
}
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline-dark:hover,
.quiz-content button:hover { transform: translateY(-2px); }
.social-proof-bar {
position: relative;
z-index: 5;
max-width: 1120px;
margin: -34px auto 34px;
border-radius: 26px;
border: 1px solid rgba(15,31,46,.07);
box-shadow: 0 22px 50px rgba(15,31,46,.12);
}
.trust-bar-image-wrap,
.benefits-section,
.favorites-section,
.testimonials,
.about-section,
.labor-section,
.faq-section,
.wall-of-fame,
.encuentranos-section {
position: relative;
}
.benefits-section,
.favorites-section,
.about-section,
.labor-section,
.faq-section,
.wall-of-fame,
.encuentranos-section {
padding-top: clamp(62px, 8vw, 96px) !important;
padding-bottom: clamp(62px, 8vw, 96px) !important;
}
.benefits-title,
.favorites-header,
.sec-title {
max-width: 860px;
margin-inline: auto;
}
.benefits-title h2,
.favorites-header h2,
.sec-title h2,
.faq-section h2,
.wall-of-fame h2,
.encuentranos-section h2 {
font-size: clamp(2rem, 4vw, 3.4rem) !important;
line-height: 1;
letter-spacing: -.035em;
}
.benefit-card,
.product-card,
.testimonial-card,
.about-card,
.labor-card,
.encuentranos-card {
border: 1px solid rgba(15,31,46,.08) !important;
box-shadow: 0 18px 46px rgba(15,31,46,.08) !important;
}
.benefit-card,
.about-card,
.testimonial-card { border-radius: 28px !important; }
.quiz-banner {
max-width: 1120px;
margin: 40px auto;
border-radius: 34px;
overflow: hidden;
border: 1px solid rgba(255,255,255,.34);
box-shadow: 0 24px 60px rgba(15,31,46,.16);
}
.quiz-content p { text-align: justify; max-width: 540px; }

/* TIENDA: experiencia guiada, rÃ¡pida y enfocada a compra */
.store-page #store-view { background: linear-gradient(180deg, #fffaf2 0%, #fcfaf7 38%, #fff 100%); }
.store-shop-layout { max-width: 1380px; }
.store-experience-hero {
width: min(1380px, calc(100% - 32px));
margin: 24px auto 18px;
min-height: min(62vh, 620px);
display: grid;
grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr);
align-items: center;
gap: clamp(24px, 5vw, 70px);
padding: clamp(34px, 6vw, 76px);
border-radius: 38px;
background:
    radial-gradient(circle at 80% 15%, rgba(231,188,21,.28), transparent 26%),
    linear-gradient(135deg, rgba(15,31,46,.98), rgba(65,52,58,.92) 56%, rgba(149,91,26,.80));
box-shadow: 0 28px 80px rgba(15,31,46,.22);
overflow: hidden;
position: relative;
}
.store-experience-hero::before {
content:'';
position:absolute;
width: 420px;
height: 420px;
border: 1px solid rgba(255,255,255,.13);
border-radius: 50%;
right: -120px;
top: -110px;
}
.store-experience-copy { position: relative; z-index: 2; }
.store-kicker {
display: inline-flex;
align-items: center;
gap: 8px;
text-transform: uppercase;
letter-spacing: .12em;
font-family: 'FormaMedium', sans-serif;
font-size: .76rem;
color: var(--orange);
margin-bottom: 12px;
}
.store-experience-copy .store-kicker { color: var(--yellow); }
.store-experience-copy h1 {
color: #fff;
font-family: 'FormaMedium', sans-serif;
font-size: clamp(2.5rem, 5vw, 5.3rem);
line-height: .92;
letter-spacing: -.055em;
max-width: 780px;
margin-bottom: 18px;
}
.store-experience-copy p {
color: rgba(255,255,255,.82);
max-width: 630px;
font-size: clamp(1rem, 1.5vw, 1.18rem);
}
.store-experience-actions { display:flex; flex-wrap:wrap; gap: 12px; margin-top: 28px; }
.btn-store-primary,
.btn-store-soft,
.decision-chip,
.btn-detail-card,
.detail-back-store,
.detail-add-btn {
border-radius: 999px;
font-family: 'FormaMedium', sans-serif;
border: 0;
transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-store-primary {
background: linear-gradient(135deg, var(--orange), #f49b22);
color: #fff;
padding: 14px 24px;
box-shadow: 0 16px 35px rgba(222,125,17,.35);
}
.btn-store-soft {
background: rgba(255,255,255,.12);
color: #fff;
border: 1px solid rgba(255,255,255,.5);
padding: 13px 22px;
}
.btn-store-primary:hover,
.btn-store-soft:hover,
.decision-chip:hover,
.btn-detail-card:hover,
.detail-add-btn:hover { transform: translateY(-2px); }
.store-experience-photo {
position: relative;
min-height: 360px;
display: grid;
place-items: end center;
}
.store-experience-photo img {
max-height: 460px;
object-fit: contain;
filter: drop-shadow(0 28px 34px rgba(0,0,0,.32));
}
.store-fast-trust {
width: min(1120px, calc(100% - 32px));
margin: -42px auto 28px;
background: rgba(255,255,255,.94);
backdrop-filter: blur(12px);
border: 1px solid rgba(15,31,46,.08);
border-radius: 24px;
box-shadow: 0 18px 46px rgba(15,31,46,.12);
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1px;
overflow: hidden;
position: relative;
z-index: 4;
}
.store-fast-trust span {
padding: 18px 14px;
text-align: center;
font-family: 'FormaMedium', sans-serif;
color: var(--dark);
}
.store-decision-guide {
width: min(1380px, calc(100% - 32px));
margin: 0 auto 24px;
padding: 24px;
border-radius: 28px;
background: #fff;
border: 1px solid rgba(15,31,46,.08);
display: grid;
grid-template-columns: 280px 1fr;
align-items: center;
gap: 22px;
box-shadow: 0 14px 38px rgba(15,31,46,.07);
}
.store-decision-guide h2 { font-size: clamp(1.5rem, 2.4vw, 2.4rem); line-height: 1; color: var(--dark); }
.decision-chip-row { display:flex; flex-wrap:wrap; gap: 10px; }
.decision-chip {
background: #fff7eb;
color: var(--dark);
border: 1px solid rgba(222,125,17,.22);
padding: 11px 15px;
}
.decision-chip:hover { background: var(--orange); color: #fff; box-shadow: 0 12px 24px rgba(222,125,17,.2); }
.store-catalog-heading { text-align: left !important; margin-bottom: 14px !important; }
.store-catalog-heading h2 { font-size: clamp(2rem, 3vw, 3.1rem); line-height: 1; color: var(--dark); }
.store-catalog-heading p { max-width: 620px; }

.product-image-open,
.product-title-open {
background: transparent;
border: 0;
padding: 0;
width: 100%;
display: block;
text-align: inherit;
}
.product-title-open h3 { margin: 0; }
.product-title-open:hover h3 { color: var(--orange); }
.badge.soft { background: rgba(231,188,21,.95); color: var(--dark); }
.product-actions-row {
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
margin: 12px 0;
}
.btn-detail-card {
background: #fff;
color: var(--dark);
border: 1px solid rgba(15,31,46,.16);
padding: 10px 14px;
font-size: .88rem;
}
.btn-detail-card:hover { border-color: var(--orange); color: var(--orange); }
.qty-controls.mini { margin: 0 !important; }
.product-card .card-desc { min-height: 44px; }
.product-card .btn-add { border-radius: 999px !important; }

/* Ficha premium de producto */
body.detail-open { overflow: hidden; }
.product-detail-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(15,31,46,.56);
backdrop-filter: blur(8px);
z-index: 800;
}
.product-detail-overlay.open { display:block; }
.product-detail-modal {
display: none;
position: fixed;
inset: 18px;
z-index: 810;
overflow-y: auto;
padding: 18px;
}
.product-detail-modal.open { display:block; }
.product-detail-shell {
max-width: 1240px;
margin: 0 auto;
background: #fff;
border-radius: 34px;
box-shadow: 0 34px 100px rgba(0,0,0,.28);
position: relative;
overflow: hidden;
}
.product-detail-close {
position: absolute;
top: 16px;
right: 18px;
width: 42px;
height: 42px;
border-radius: 50%;
border: 1px solid rgba(15,31,46,.12);
background: #fff;
z-index: 4;
font-size: 1.4rem;
color: var(--dark);
}
.detail-grid {
display: grid;
grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
gap: 0;
min-height: 680px;
}
.detail-gallery {
padding: clamp(24px, 4vw, 54px);
display: flex;
flex-direction: column;
justify-content: center;
}
.detail-main-image-wrap {
background: rgba(255,255,255,.75);
border-radius: 30px;
display: grid;
place-items: center;
min-height: 420px;
box-shadow: inset 0 0 0 1px rgba(15,31,46,.06);
}
.detail-main-image-wrap img { max-height: 420px; object-fit: contain; }
.detail-thumbs { display:flex; gap: 12px; margin-top: 18px; overflow-x:auto; padding-bottom: 4px; }
.detail-thumb {
flex: 0 0 86px;
height: 86px;
border-radius: 18px;
border: 1px solid rgba(15,31,46,.12);
background: #fff;
padding: 6px;
}
.detail-thumb.active { border-color: var(--orange); box-shadow: 0 10px 20px rgba(222,125,17,.16); }
.detail-thumb img { width: 100%; height: 100%; object-fit: contain; }
.detail-info { padding: clamp(28px, 4.5vw, 60px); overflow: visible; }
.detail-back-store {
background: #fff7eb;
color: var(--dark);
border: 1px solid rgba(222,125,17,.18);
padding: 10px 15px;
margin-bottom: 20px;
}
.detail-rating { color: var(--orange); font-family: 'FormaMedium', sans-serif; margin-bottom: 14px; }
.detail-rating span { color: #555; margin-left: 8px; font-family: 'FormaRegular', sans-serif; }
.detail-info h2 { font-size: clamp(2.2rem, 4vw, 4.5rem); line-height: .93; color: var(--dark); letter-spacing: -.045em; margin-bottom: 10px; }
.detail-subtitle { color: var(--orange); font-family: 'FormaMedium', sans-serif; text-align: left; }
.detail-long-desc { font-size: 1.03rem; color: #555; margin: 16px 0; }
.detail-price-row { display:flex; align-items:center; flex-wrap:wrap; gap: 14px; margin: 18px 0; }
.detail-price-row strong { font-size: 1.7rem; color: var(--dark); }
.detail-price-row span { background: #f7f3ed; padding: 9px 13px; border-radius: 999px; }
.detail-availability { display:inline-flex; color: #3c6b10; background:#f0f8df; padding: 11px 15px; border-radius: 999px; font-family:'FormaMedium'; margin-bottom: 18px; }
.detail-availability.out { color: #9a1e1e; background:#fde9e9; }
.detail-buy-row { display:flex; gap: 12px; align-items:center; margin: 10px 0 20px; flex-wrap:wrap; }
.detail-qty { margin: 0 !important; }
.detail-add-btn { background: var(--orange); color:#fff; padding: 15px 26px; min-height: 52px; box-shadow: 0 14px 30px rgba(222,125,17,.26); }
.detail-value-cards { display:grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 22px 0; }
.detail-value-cards div,
.detail-section-block,
.review-card {
background: #fffaf3;
border: 1px solid rgba(15,31,46,.07);
border-radius: 22px;
padding: 18px;
}
.detail-value-cards span { display:block; font-size:.78rem; color:#777; text-transform:uppercase; letter-spacing:.08em; margin-bottom:6px; }
.detail-value-cards strong { color: var(--dark); }
.detail-section-block { margin-top: 12px; background: #fff; }
.detail-section-block h3, .detail-reviews h3 { color: var(--dark); margin-bottom: 8px; }
.detail-section-block ul { padding-left: 20px; color:#555; }
.detail-section-block li { margin: 6px 0; }
.detail-worth { background: linear-gradient(135deg, #fff8e5, #fff); }
.detail-reviews { margin-top: 18px; display:grid; gap: 10px; }
.review-card { background:#fcfaf7; color: var(--orange); }
.review-card p { color:#444; margin: 8px 0; }
.review-card span { color:#777; font-size:.9rem; }
.product-toast { z-index: 920 !important; }

/* Carrito: upsell mÃ¡s profesional, no invasivo */
.cart-upsell-premium,
.cart-upsell-bar {
border-radius: 20px !important;
border: 1px solid rgba(222,125,17,.16) !important;
background: linear-gradient(135deg, #fff8ec, #fff) !important;
box-shadow: 0 12px 28px rgba(15,31,46,.07) !important;
}
.cart-upsell-bar .u-text p { font-family:'FormaMedium', sans-serif; color: var(--dark); }
.cart-upsell-bar button { border-radius: 999px !important; background: var(--orange) !important; }

@media (max-width: 980px) {
.store-experience-hero,
.store-decision-guide,
.detail-grid { grid-template-columns: 1fr; }
.store-experience-photo { min-height: 260px; }
.store-fast-trust { grid-template-columns: repeat(2, 1fr); margin-top: 16px; }
.detail-grid { min-height: 0; }
.detail-gallery { padding-top: 58px; }
}
@media (max-width: 680px) {
.hero { padding-top: 72px; }
.hero-logo { width: 190px; }
.hero h1 { font-size: clamp(2.3rem, 12vw, 4rem); }
.hero-cta-group, .store-experience-actions { width: 100%; }
.btn-primary, .btn-secondary, .btn-store-primary, .btn-store-soft { width: 100%; justify-content: center; }
.social-proof-bar { margin-top: 0; border-radius: 0; }
.store-experience-hero { width: calc(100% - 20px); border-radius: 28px; padding: 30px 20px; min-height: auto; }
.store-fast-trust, .store-decision-guide { width: calc(100% - 20px); }
.store-fast-trust { grid-template-columns: 1fr 1fr; }
.store-decision-guide { padding: 18px; }
.decision-chip { width: 100%; }
.product-detail-modal { inset: 0; padding: 0; }
.product-detail-shell { border-radius: 0; min-height: 100vh; }
.detail-main-image-wrap { min-height: 300px; }
.detail-value-cards { grid-template-columns: 1fr; }
.detail-buy-row { align-items: stretch; }
.detail-add-btn { width: 100%; }
}


/* AJUSTES CANNIET V3 */
body {
letter-spacing: .014em;
}
h1, h2, h3, h4, h5, h6, .store-kicker, button, .price-current, .detail-price-row strong {
letter-spacing: .006em !important;
}
.hero h1,
.store-experience-copy h1,
.detail-info h2 {
letter-spacing: -.018em !important;
}
.wall-of-fame p {
text-align: center !important;
max-width: 720px;
margin: 0 auto 24px;
}
.social-proof-bar {
align-items: center !important;
justify-items: center !important;
text-align: center !important;
}
.proof-item {
justify-content: center !important;
text-align: center !important;
}

.expos-section {
    position: relative;
    padding: 72px 28px !important;
    background:
        linear-gradient(132deg, #0c2640 0%, #183552 44%, #f6f1e6 44%, #f6f1e6 100%) !important;
    overflow: hidden;
}
.expos-container {
    width: min(1450px, 100%) !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(520px, 640px) minmax(620px, 760px) !important;
    gap: 42px !important;
    align-items: center !important;
}

.expos-copy .store-kicker { color: var(--orange); }

.expos-copy p {
    margin: 0 auto 24px !important;
    color: rgba(255, 255, 255, 0.92) !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    max-width: 500px !important;
    text-align: center !important;
}

.expo-pill {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    min-height: 68px !important;
    padding: 14px 16px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    background: rgba(8, 30, 52, 0.78) !important;
    color: var(--dark) !important;
    font-size: 0.98rem !important;
    font-family: 'FormaMedium', sans-serif !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03) !important;
    border-color: rgba(255,255,255,.20) !important;
    backdrop-filter: blur(10px)
}

.expos-visual {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
    gap: 24px !important;
    align-items: center !important;
}

.expo-card {
    position: relative !important;
    background: #ffffff !important;
    border-radius: 28px !important;
    padding: 12px !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.10) !important;
    overflow: hidden !important;
}

.expo-card img {
    width: 100% !important;
    height: 360px !important;
    object-fit: cover !important;
    border-radius: 22px !important;
    display: block !important;
}
.expo-card:nth-child(2) { transform: translateY(34px); }

.expo-caption {
    position: absolute !important;
    left: 22px !important;
    right: 22px !important;
    bottom: 22px !important;
    background: #f4f4f4 !important;
    color: #0f1f2e !important;
    border-radius: 18px !important;
    padding: 14px 18px !important;
    font-family: 'FormaMedium', sans-serif !important;
    font-size: 0.98rem !important;
    line-height: 1.2 !important;
}

.variant-select-wrap {
margin: 10px 0 6px;
}
.variant-select-label {
display: block;
font-size: .78rem;
color: #777;
margin-bottom: 6px;
text-transform: uppercase;
letter-spacing: .08em;
}
.variant-select {
width: 100%;
border-radius: 14px;
border: 1px solid rgba(15,31,46,.15);
background: #fff;
padding: 10px 12px;
color: var(--dark);
font-family: 'FormaRegular', sans-serif;
}
.detail-variant-box {
margin: 14px 0 4px;
max-width: 360px;
}
.detail-variant-box .variant-select {
min-height: 46px;
border-radius: 999px;
background: #fffaf3;
border-color: rgba(222,125,17,.24);
}
.product-detail-modal.open .product-detail-shell {
scroll-margin-top: 0;
}
@media (max-width: 820px) {
    .expos-section {
        padding: 54px 16px !important;
        background: #0c2640 !important;
    }

    .expos-container {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-items: center !important;
        gap: 28px !important;
    }

    .expos-copy {
        width: 100% !important;
        max-width: 430px !important;
        padding: 30px 22px !important;
        border-radius: 28px !important;
        text-align: center !important;
    }

    .expos-copy .expos-eyebrow,
    .expos-copy h3 {
        font-size: 0.95rem !important;
        margin-bottom: 16px !important;
        text-align: center !important;
    }

    .expos-copy h2 {
        font-size: clamp(2.35rem, 11vw, 3.45rem) !important;
        line-height: 1.02 !important;
        letter-spacing: -0.035em !important;
        max-width: 360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .expos-copy p {
        font-size: 0.9rem !important;
        line-height: 1.45 !important;
        max-width: 330px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .expos-list {
        width: 100% !important;
        max-width: 360px !important;
        margin: 20px auto 0 !important;
        gap: 12px !important;
    }

    .expo-pill {
        width: 100% !important;
        min-height: 58px !important;
        padding: 14px 16px !important;
        justify-content: center !important;
        text-align: center !important;
        font-size: 0.9rem !important;
        line-height: 1.25 !important;
    }

    .expos-visual {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 390px !important;
        gap: 18px !important;
    }

    .expo-card:nth-child(2) {
        transform: translateY(34px);
    }

    .expo-card img {
        height: 260px !important;
    }

}


/* =========================================================
AJUSTES CANNIET V4 - index completo + hero sin obstrucciÃ³n
========================================================= */
:root { --cream:#fff7eb; --cream2:#f7efe5; --ink:#0f1f2e; }
html { scroll-behavior:smooth; }
body { letter-spacing: .018em; }
p, li, a, span, input, select, textarea { letter-spacing: .014em; }
h1,h2,h3,h4,h5,h6 { letter-spacing: -.008em !important; }

/* Portada: pantalla completa real, sin bloque encima de la parte inferior */
.hero {
min-height: 100svh !important;
height: 100svh !important;
padding: clamp(84px, 9vh, 118px) 22px clamp(72px, 9vh, 112px) !important;
display: flex !important;
justify-content: center !important;
isolation: isolate;
}
.hero-logo {
width: clamp(140px, 15vw, 220px) !important;
max-height: 150px !important;
object-fit: contain !important;
background: none !important;
border: 0 !important;
border-radius: 0 !important;
padding: 0 !important;
box-shadow: none !important;
filter: drop-shadow(0 12px 22px rgba(0,0,0,.30)) !important;
margin-bottom: clamp(14px, 2vh, 22px) !important;
}
.hero h1 {
max-width: 1060px !important;
margin: 8px auto 18px !important;
font-size: clamp(2.55rem, 6vw, 5.6rem) !important;
line-height: .96 !important;
text-wrap: balance;
}
.hero-sub {
max-width: 740px !important;
line-height: 1.55 !important;
margin-bottom: 28px !important;
text-align: center !important;
}
.hero-cta-group { margin-bottom: 0 !important; }
.hero::after, .hero::before { display: none !important; }
.social-proof-bar {
margin: 0 auto !important;
max-width: none !important;
width: 100% !important;
border-radius: 0 !important;
padding: 18px clamp(16px,4vw,50px) !important;
box-shadow: none !important;
border-top: 1px solid rgba(15,31,46,.08) !important;
border-bottom: 1px solid rgba(15,31,46,.08) !important;
background: #fffaf4 !important;
}
.proof-item:nth-child(2) { min-width: 210px; }

/* RediseÃ±o visual del index completo */
.trust-bar-image-wrap {
background: linear-gradient(180deg, #fffaf4, #fff) !important;
padding: 34px clamp(16px,4vw,58px) !important;
}
.benefits-section {
background:
    linear-gradient(115deg, rgba(255,250,244,.94) 0%, rgba(255,255,255,.85) 52%, rgba(247,239,229,.92) 100%),
    url('https://i.postimg.cc/7LVk5ZBk/Gemini-Generated-Image-3umb4i3umb4i3umb.png') center/cover !important;
}
.benefits-title span,
.favorites-label,
.sec-title span,
.store-kicker {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 14px;
border-radius: 999px;
background: rgba(222,125,17,.10);
color: var(--orange) !important;
border: 1px solid rgba(222,125,17,.16);
}
.benefits-grid {
width: min(1180px, calc(100% - 32px)) !important;
margin: 34px auto 0 !important;
gap: 18px !important;
}
.benefit-card {
background: rgba(255,255,255,.86) !important;
backdrop-filter: blur(12px);
padding: 30px !important;
transform: translateZ(0);
}
.benefit-card:hover,
.product-card:hover,
.testimonial-card:hover,
.about-card:hover,
.labor-card:hover,
.encuentranos-card:hover {
transform: translateY(-5px);
box-shadow: 0 28px 70px rgba(15,31,46,.13) !important;
}

.favorites-section {
background:
    radial-gradient(circle at 10% 8%, rgba(231,188,21,.18), transparent 25%),
    linear-gradient(180deg, #fff, #fff7eb) !important;
}
.favorites-header p { text-align: center !important; }
.favorites-section .products-grid { width: min(1180px, calc(100% - 32px)) !important; margin-inline:auto !important; }

.product-img-wrap { background: linear-gradient(135deg, #fffaf2, #f2e8dc) !important; }

.quiz-banner {
background:
    radial-gradient(circle at 84% 18%, rgba(231,188,21,.30), transparent 26%),
    linear-gradient(135deg, var(--dark), #26394a 55%, #875325) !important;
color: #fff !important;
padding: clamp(32px, 5vw, 56px) !important;
}
.quiz-content h2, .quiz-content p { color: #fff !important; }
.quiz-content p { text-align: left !important; opacity: .88; }

.testimonials {
background:
    linear-gradient(rgba(15,31,46,.88), rgba(15,31,46,.82)),
    url('https://i.postimg.cc/QNybhB8Q/Chat-GPT-Image-12-jun-2026-09-25-15-a-m.png') center/cover fixed !important;
color: #fff !important;
}
.testimonials .sec-title h2,
.testimonials .sec-title p { color: #fff !important; text-align:center !important; }
.testimonial-card {
background: rgba(255,255,255,.92) !important;
backdrop-filter: blur(12px);
}

.about-section {
background:
    linear-gradient(90deg, #fffaf2 0%, #fff 42%, #f6efe6 100%) !important;
}
.about-grid {
width: min(1180px, calc(100% - 32px)) !important;
margin-inline: auto !important;
}
.about-card {
background: #fff !important;
padding: 34px !important;
position: relative;
overflow: hidden;
}
.about-card::before {
content:'';
position:absolute;
inset: 0 auto 0 0;
width: 6px;
background: linear-gradient(180deg, var(--orange), var(--yellow));
}

.labor-section {
background:
    radial-gradient(circle at 90% 10%, rgba(222,125,17,.12), transparent 28%),
    linear-gradient(180deg, #fff, #fffaf2) !important;
}
.labor-grid { width: min(1180px, calc(100% - 32px)) !important; margin-inline:auto !important; gap: 20px !important; }
.labor-card { border-radius: 30px !important; overflow:hidden !important; background:#fff !important; }
.labor-img img { transition: transform .35s ease; }
.labor-card:hover .labor-img img { transform: scale(1.05); }

.expos-copy h2 {
    margin: 0 0 18px !important;
    color: #ffffff !important;
    font-family: 'FormaMedium', sans-serif !important;
    font-size: clamp(2.9rem, 4.2vw, 4.6rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
    max-width: 500px !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.expo-card { border: 8px solid #fff; }


.faq-nav:hover { background: var(--orange) !important; color:#fff !important; }

.wall-of-fame p { text-align: center !important; }

.gallery-item {
border-radius: 24px !important;
background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,247,235,.92)) !important;
border: 1px dashed rgba(222,125,17,.35) !important;
}

.encuentranos-section {
background:
    linear-gradient(rgba(255,255,255,.90), rgba(255,255,255,.88)),
    linear-gradient(180deg, #fff, #fff7eb) !important;
}
.encuentranos-card { border-radius: 28px !important; background: rgba(255,255,255,.92) !important; backdrop-filter: blur(10px); }
footer { background: linear-gradient(135deg, #0f1f2e, #172b3e) !important; }

/* ficha detalle: siempre empieza arriba */
.product-detail-modal.open { scroll-behavior: auto !important; }
.product-detail-shell { scroll-margin-top: 0 !important; }

@media (max-width: 980px) {
.hero { height: auto !important; min-height: 100svh !important; }
.expos-section { background: linear-gradient(180deg, #0f1f2e 0%, #22374a 55%, #fff7eb 55.2%, #fff 100%) !important; }
}
@media (max-width: 680px) {
body { letter-spacing: .006em; }
.hero { padding-top: 84px !important; padding-bottom: 56px !important; }
.hero-logo { width: 150px !important; }
.hero h1 { letter-spacing: -.015em !important; }
.social-proof-bar { display: grid !important; grid-template-columns: 1fr; gap: 10px !important; }
.proof-item:nth-child(2) { min-width: 0; }
.benefits-section, .favorites-section, .testimonials, .about-section, .labor-section, .faq-section, .wall-of-fame, .encuentranos-section { padding-top: 54px !important; padding-bottom: 54px !important; }
}

/* AJUSTES CANNIET V5 - detalle lateral, sin emojis y secciones rediseÃ±adas */
.empty-cart-icon::before { content: ''; display:block; width:54px; height:54px; margin: 0 auto; border: 3px solid currentColor; border-radius: 18px; opacity:.45; }
.icon-chew::before,
.icon-paw::before,
.icon-card::before,
.icon-chat::before,
.icon-phone::before,
.icon-truck::before,
.icon-bank::before { content:''; display:inline-block; width:18px; height:18px; border-radius:50%; border:2px solid currentColor; vertical-align:-3px; }
.icon-card::before { border-radius:4px; width:20px; height:14px; }
.icon-truck::before { border-radius:4px; width:22px; height:14px; }
.icon-phone::before { border-radius:7px; width:14px; height:22px; }
.icon-bank::before { border-radius:2px; width:20px; height:16px; }

/* Quitar guÃ­a del index de forma definitiva en caso de cachÃ©/estructura anterior */
.quiz-banner { display: none !important; }

/* Ficha producto como panel lateral izquierdo: ocupa 70% en desktop */
.product-detail-overlay.open {
display: block !important;
background: rgba(15, 31, 46, .54) !important;
backdrop-filter: blur(8px) !important;
}
.product-detail-modal {
inset: 0 auto 0 0 !important;
width: min(70vw, 1180px) !important;
max-width: 1180px !important;
min-width: 760px !important;
padding: 0 !important;
overflow-y: auto !important;
transform: translateX(-105%);
transition: transform .34s ease;
display: block !important;
pointer-events: none;
}
.product-detail-modal.open {
transform: translateX(0);
pointer-events: auto;
}
.product-detail-shell {
max-width: none !important;
min-height: 100vh !important;
margin: 0 !important;
border-radius: 0 36px 36px 0 !important;
box-shadow: 26px 0 80px rgba(0,0,0,.28) !important;
}
.product-detail-close {
top: 22px !important;
right: 24px !important;
}
.detail-grid {
grid-template-columns: minmax(280px, .82fr) minmax(380px, 1fr) !important;
min-height: 100vh !important;
}
.detail-gallery {
justify-content: flex-start !important;
padding-top: 84px !important;
}
.detail-info {
padding-top: 84px !important;
}
.detail-back-store { border-radius: 999px !important; }
.detail-price-row span { display: none !important; }
.detail-presentation-pill,
.variant-pill,
.variant-select {
border-radius: 18px !important;
}
.detail-presentation-pill {
display: inline-flex;
align-items: center;
padding: 12px 18px;
margin: 2px 0 18px;
background: #f7f3ed;
color: var(--dark);
font-family: 'FormaMedium', sans-serif;
}
.variant-select-wrap,
.detail-variant-box {
margin: 16px 0 18px !important;
}
.variant-select-label {
margin-bottom: 8px !important;
}
.variant-select {
appearance: auto !important;
background: #fff !important;
border: 1px solid rgba(15,31,46,.16) !important;
box-shadow: 0 10px 24px rgba(15,31,46,.06) !important;
font-family: 'FormaMedium', sans-serif !important;
}
.sr-card-presentation { display: none !important; }
.card-body .variant-select-wrap {
margin: 14px 0 10px !important;
}
.card-body .variant-select-label {
color: #777 !important;
letter-spacing: .06em !important;
}
.card-body .variant-select {
min-height: 52px !important;
font-size: 1rem !important;
}

/* Nuestra esencia: diseÃ±o editorial, conserva imÃ¡genes y textos */
.about-section {
background: linear-gradient(180deg, #fffaf2 0%, #ffffff 42%, #f6efe8 100%) !important;
position: relative;
overflow: hidden;
}
.about-section::before {
content:'';
position:absolute;
width: 420px;
height: 420px;
border-radius: 50%;
background: radial-gradient(circle, rgba(222,125,17,.18), transparent 68%);
top: 8%;
right: -140px;
}
.about-grid {
display:grid !important;
grid-template-columns: repeat(3, minmax(0,1fr)) !important;
gap: 18px !important;
position: relative;
z-index: 1;
}
.about-card {
border-radius: 34px !important;
padding: 0 !important;
overflow: hidden !important;
background: rgba(255,255,255,.86) !important;
border: 1px solid rgba(15,31,46,.08) !important;
box-shadow: 0 24px 60px rgba(15,31,46,.08) !important;
}
.about-card::before { display:none !important; }
.about-card .a-img {
height: 180px !important;
background: linear-gradient(135deg, #fff3dd, #f5e8d8) !important;
display:grid !important;
place-items:center !important;
margin: 0 !important;
}
.about-card .a-img img { max-height: 118px !important; object-fit: contain !important; }
.about-card h3,
.about-card p { padding-left: 26px !important; padding-right: 26px !important; }
.about-card h3 { padding-top: 24px !important; }
.about-card p { padding-bottom: 28px !important; }

/* Nuestra labor: menos tarjeta genÃ©rica, mÃ¡s galerÃ­a editorial */
.labor-section {
background: #0f1f2e !important;
color: #fff !important;
position: relative;
overflow: hidden;
}
.labor-section::before {
content:'';
position:absolute;
inset: 0;
background: radial-gradient(circle at 12% 20%, rgba(231,188,21,.18), transparent 32%), radial-gradient(circle at 88% 12%, rgba(222,125,17,.22), transparent 30%);
pointer-events:none;
}
.labor-section .sec-title,
.labor-section .labor-grid { position: relative; z-index: 1; }
.labor-section .sec-title h2,
.labor-section .sec-title p { color: #fff !important; }
.labor-grid {
display:grid !important;
grid-template-columns: 1.2fr .9fr .9fr !important;
align-items: stretch !important;
}
.labor-card {
background: rgba(255,255,255,.08) !important;
border: 1px solid rgba(255,255,255,.14) !important;
box-shadow: none !important;
border-radius: 34px !important;
backdrop-filter: blur(12px);
}
.labor-card:first-child { grid-row: span 2; }
.labor-img { height: 260px !important; }
.labor-card:first-child .labor-img { height: 430px !important; }
.labor-img img { width: 100%; height: 100%; object-fit: cover; }
.labor-content { padding: 24px !important; }
.labor-content h3 { color: #fff !important; }
.labor-content p { color: rgba(255,255,255,.78) !important; }

@media (max-width: 1100px) {
.product-detail-modal { width: 86vw !important; min-width: 0 !important; }
.detail-grid { grid-template-columns: 1fr !important; }
.detail-gallery { padding-top: 74px !important; }
.detail-info { padding-top: 32px !important; }
.about-grid, .labor-grid { grid-template-columns: 1fr !important; }
.labor-card:first-child { grid-row: auto; }
.labor-card:first-child .labor-img, .labor-img { height: 260px !important; }
}
@media (max-width: 680px) {
.product-detail-modal { width: 100vw !important; min-width: 0 !important; }
.product-detail-shell { border-radius: 0 !important; }
}

/* AJUSTES FINALES CANNIET V6 */
/* Ficha de producto: panel de derecha a izquierda, 70% desktop */
.product-detail-modal {
inset: 0 0 0 auto !important;
width: min(70vw, 1180px) !important;
max-width: 1180px !important;
min-width: 760px !important;
padding: 0 !important;
overflow-y: auto !important;
transform: translateX(105%) !important;
transition: transform .34s ease !important;
display: block !important;
pointer-events: none !important;
}
.product-detail-modal.open {
transform: translateX(0) !important;
pointer-events: auto !important;
}
.product-detail-shell {
border-radius: 36px 0 0 36px !important;
box-shadow: -26px 0 80px rgba(0,0,0,.28) !important;
}
.detail-grid {
grid-template-columns: minmax(310px, .86fr) minmax(380px, 1fr) !important;
}
.detail-gallery {
display: block !important;
padding: 84px clamp(22px,3vw,42px) 42px !important;
overflow: visible !important;
}
.detail-gallery-list {
display: grid;
gap: 18px;
}
.detail-full-image {
background: rgba(255,255,255,.78);
border: 1px solid rgba(15,31,46,.06);
border-radius: 28px;
min-height: 185px;
display: grid;
place-items: center;
overflow: hidden;
}
.detail-full-image.primary { min-height: 330px; }
.detail-full-image img {
width: 100%;
height: 100%;
max-height: 330px;
object-fit: contain !important;
}
.detail-full-image.primary img { max-height: 390px; }
.detail-main-image-wrap,
.detail-thumbs { display: none !important; }

/* Selector de presentaciÃ³n como botones cÃ¡psula, no dropdown */
.variant-select-wrap.compact-variant-wrap,
.detail-variant-box { margin: 12px 0 16px !important; }
.variant-pill-row {
display: flex;
flex-wrap: wrap;
gap: 10px;
align-items: center;
}
.variant-choice {
border: 1px solid rgba(15,31,46,.10);
background: #f7f3ed;
color: var(--dark);
padding: 12px 18px;
border-radius: 999px;
font-family: 'FormaMedium', sans-serif;
font-size: .98rem;
min-height: 48px;
box-shadow: 0 8px 18px rgba(15,31,46,.04);
}
.variant-choice.active,
.variant-choice:hover {
background: #fff;
border-color: var(--orange);
color: var(--orange);
box-shadow: 0 12px 24px rgba(222,125,17,.12);
}
.card-body .variant-select-label { display: none !important; }
.card-body .variant-select-wrap { margin: 12px 0 12px !important; }
.card-body .variant-choice { padding: 10px 15px; min-height: 42px; }
.detail-variant-pills .variant-choice { min-width: 120px; justify-content: center; }

/* Tarjetas alineadas al mismo nivel */
.products-grid { align-items: stretch !important; }
.card-img-wrap { height: 300px !important; flex: 0 0 300px !important; }
.card-body { display: flex !important; flex-direction: column !important; flex: 1 1 auto !important; }
.product-title-open h3,
.card-body h3 { min-height: 2.65em; display: flex; align-items: flex-start; }
.product-subtitle { min-height: 1.6em; }
.product-presentation { min-height: 0; align-self: flex-start; }
.card-desc { min-height: 3.8em !important; }
.price-row { margin-top: auto !important; min-height: 50px; align-items: center !important; }
.product-actions-row { min-height: 52px; }
.product-card .btn-add { min-height: 58px; }

/* Nuestra esencia: quitar crema detrÃ¡s de iconos */
.about-card .a-img {
background: transparent !important;
height: 155px !important;
border-radius: 26px !important;
margin: 18px 18px 0 !important;
}
.about-card .a-img img {
max-height: 112px !important;
filter: drop-shadow(0 10px 18px rgba(15,31,46,.08));
}

/* Testimonios legibles */
.testimonial-card,
.testimonial-card * { color: var(--dark) !important; }
.testimonial-card .t-text { color: #4f4f4f !important; }
.testimonial-card .t-dog { color: #777 !important; }
.t-avatar {
color: var(--orange) !important;
background: #fff !important;
border: 3px solid var(--orange) !important;
font-family: 'FormaMedium', sans-serif !important;
}
.t-stars { color: var(--orange) !important; }

/* GuÃ­a de tienda: recuadro mÃ¡s sÃ³lido para que no se pierda con la imagen */
.store-decision-guide,
.store-quick-guide,
.decision-panel {
background: rgba(255,255,255,.94) !important;
backdrop-filter: blur(12px) !important;
}
.store-decision-guide h2,
.store-quick-guide h2,
.decision-panel h2 { color: var(--dark) !important; }

/* Favoritos equilibrados */
#favoritosGrid {
grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
justify-content: center !important;
}
@media (max-width: 1100px) {
#favoritosGrid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.product-detail-modal { width: 86vw !important; min-width: 0 !important; }
.detail-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 680px) {
#favoritosGrid { grid-template-columns: 1fr !important; }
.product-detail-modal { width: 100vw !important; min-width: 0 !important; }
.product-detail-shell { border-radius: 0 !important; }
.detail-gallery { padding-top: 74px !important; }
.detail-full-image.primary { min-height: 280px; }
}


/* ========================
OVERRIDES V7 - ajustes finales
======================== */
:root { --header-h: 82px; }
body { overflow-x: hidden; }
.page-spacer { padding-top: var(--header-h) !important; margin-top: 0 !important; }
.page-spacer > :first-child { margin-top: 0 !important; }

/* Textos de encabezado centrados */
.benefits-title,
.favorites-header,
.sec-title,
.store-decision-guide,
.store-catalog-heading,
.benefits-title p,
.favorites-header p,
.sec-title p,
.store-experience-copy p,
.store-catalog-heading p,
.faq-hint {
margin-left: auto !important;
margin-right: auto !important;
text-align: center !important;
max-width: 920px !important;
line-height: 1.5 !important;
text-wrap: balance;
}

/* Avatares visibles */
.t-avatar { color: var(--dark) !important; background: #f2ede6 !important; }
.t-name, .t-dog { color: var(--dark) !important; }

/* Tarjetas de producto parejas */
.products-grid { align-items: stretch !important; }

.product-card .card-body {
flex: 1 1 auto;
display: flex;
flex-direction: column;
}
.product-card .card-desc { min-height: 3.4em !important; }
.product-card .price-row { margin-top: auto; }
.product-card .btn-add { margin-top: 12px; }
.product-actions-row { align-items: center; }

/* ImÃ¡genes de tarjetas sin marcos blancos y al tamaÃ±o del recuadro */
.card-img-wrap {
padding: 0 !important;
background: transparent !important;
overflow: hidden !important;
border-radius: 28px 28px 0 0 !important;
}
.product-image-carousel,
.product-image-open {
display: block !important;
width: 100% !important;
height: 100% !important;
}
.product-image-carousel {
aspect-ratio: 1 / 1;
min-height: 280px;
background: transparent !important;
}
.product-image-open img,
.product-image-carousel img,
#favoritosGrid .product-image-carousel img {
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
object-position: center !important;
display: block !important;
}

/* Hero tienda con imagen de fondo en el marco */
.store-experience-hero {
margin-top: 0 !important;
position: relative;
overflow: hidden;
grid-template-columns: 1fr !important;
background:
    url('https://i.postimg.cc/gJNdjxGh/Chat-GPT-Image-12-jun-2026-11-37-14-a-m.png') center/cover no-repeat !important;
min-height: 520px;
align-items: center !important;
}
.store-experience-photo { display: none !important; }
.store-experience-copy { max-width: 760px; }
.store-experience-copy p { color: rgba(255,255,255,.92) !important; }
.store-experience-copy h1,
.store-experience-copy .store-kicker { color: #fff !important; }
.store-fast-trust span { color: var(--dark) !important; }
.store-fast-trust {
margin-top: -34px !important;
position: relative;
z-index: 3;
}

/* GuÃ­a de decisiÃ³n mÃ¡s limpia */
.store-decision-guide {
display: grid !important;
gap: 22px;
justify-items: center !important;
}
.decision-guide-heading { display: block; }
.store-decision-guide h2 {
margin: 0 !important;
max-width: 700px;
}
.decision-chip-row {
justify-content: center !important;
}

/* Quitar label catÃ¡logo visualmente por si quedara */
.store-catalog-heading .store-kicker { display: none !important; }
.store-catalog-heading {
text-align: center !important;
margin-bottom: 22px !important;
}

/* Detalle producto: sin botÃ³n de regresar, variantes lado a lado */
.detail-back-store { display: none !important; }
.detail-grid {
grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr) !important;
align-items: start !important;
gap: 26px !important;
}
.detail-gallery {
padding-top: 14px !important;
}
.detail-gallery-list {
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px !important;
}
.detail-full-image {
border-radius: 24px !important;
overflow: hidden !important;
background: transparent !important;
aspect-ratio: 1 / 1;
}
.detail-full-image img {
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
display: block !important;
}
.detail-variant-pills {
display: grid !important;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px !important;
}
.detail-variant-pills .variant-choice,
.variant-pill-row .variant-choice {
min-width: 0 !important;
width: 100% !important;
justify-content: center !important;
}
.product-detail-shell { padding-top: 28px !important; }



/* Nuestra labor: todas las tarjetas del mismo tamaÃ±o */
.labor-grid { align-items: stretch !important; }
.labor-card {
display: flex !important;
flex-direction: column !important;
height: 100% !important;
}
.labor-card:first-child { grid-row: auto !important; }
.labor-img,
.labor-card:first-child .labor-img {
height: 280px !important;
overflow: hidden !important;
}
.labor-img img {
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
display: block !important;
}
.labor-content { flex: 1 1 auto; }

.faq-carousel {
    position: relative;
    width: min(1180px, 100%) !important;
    margin: 0 auto !important;
    padding: 0 62px !important;
    overflow: hidden !important;
}

/* Expos: jerarquÃ­a profesional */


.expos-copy .expos-eyebrow {
    display: block !important;
    margin: 0 0 18px !important;
    font-family: 'FormaMedium', sans-serif !important;
    font-size: clamp(1.05rem, 1.7vw, 1.35rem) !important;
    line-height: 1.1 !important;
    color: #f0a342 !important;
    text-transform: uppercase !important;
    letter-spacing: .03em !important;
    text-align: center !important;
}

.expos-copy h3 {
font-family: 'FormaRegular', sans-serif !important;
font-weight: 400 !important;
font-size: clamp(1rem, 1.5vw, 1.35rem) !important;
color: rgba(255,255,255,.92) !important;
margin-bottom: 22px !important;
}

.expo-card img { display:block; width:100%; height:100%; object-fit:cover; }

/* Distribuidores y mÃ¡rgenes superiores */
.store-page #store-view,
main.page-spacer { padding-top: var(--header-h) !important; }
.dist-hero-premium { margin-top: 0 !important; }

/* Responsive */
@media (max-width: 980px) {
.detail-grid { grid-template-columns: 1fr !important; }
.detail-gallery-list { grid-template-columns: 1fr !important; }
}
@media (max-width: 860px) {
.store-experience-hero { min-height: 420px; }
.store-fast-trust { width: calc(100% - 20px); }
.decision-chip-row { justify-content: center !important; }
}
@media (max-width: 640px) {
.detail-variant-pills { grid-template-columns: 1fr !important; }
.product-image-carousel { min-height: 220px; }
}


/* ========================
FIX V8 - imÃ¡genes completas, sin encimarse
======================== */

/* Regresa las imÃ¡genes de producto a visual completo */
.product-image-carousel {
background: #fff !important;
min-height: 280px !important;
aspect-ratio: 1 / 1 !important;
}

.product-image-open,
.product-image-carousel {
overflow: hidden !important;
}

.product-image-open img,
.product-image-carousel img,
#favoritosGrid .product-image-carousel img {
width: 100% !important;
height: 100% !important;
object-fit: contain !important;
object-position: center !important;
display: block !important;
background: #fff !important;
}

/* Mantiene las tarjetas alineadas sin recortar fotos */
.card-img-wrap {
background: #fff !important;
overflow: hidden !important;
}

/* Detalle de producto: imÃ¡genes completas, una debajo de otra y sin traslapes */
.detail-gallery {
padding-top: 14px !important;
overflow: visible !important;
}

.detail-gallery-list {
display: flex !important;
flex-direction: column !important;
gap: 18px !important;
width: 100% !important;
}

.detail-full-image {
width: 100% !important;
min-height: 360px !important;
max-height: 520px !important;
aspect-ratio: auto !important;
border-radius: 26px !important;
overflow: hidden !important;
background: #fff !important;
border: 1px solid rgba(15,31,46,.08) !important;
}

.detail-full-image img {
width: 100% !important;
height: 100% !important;
max-height: 520px !important;
object-fit: contain !important;
object-position: center !important;
display: block !important;
background: #fff !important;
}

/* El panel se mantiene desde la derecha, pero con espacio correcto */
.detail-grid {
align-items: start !important;
}

@media (max-width: 980px) {
.detail-full-image {
    min-height: 280px !important;
}
}


/* ========================
FIX V9 - expos legibles y distribuidores sin espacio superior
======================== */

/* Expos: evitar que la diagonal/fondo tape el texto */
.expos-list {
position: relative !important;
z-index: 5 !important;
}

.expo-pill,
.expo-pill * {
color: #ffffff !important;
opacity: 1 !important;
text-shadow: none !important;
}

body:has(.dist-hero-premium) .page-spacer,
main.page-spacer:has(.dist-hero-premium) {
padding-top: 0 !important;
margin-top: 0 !important;
}

.dist-hero-premium {
padding-top: clamp(36px, 5vw, 70px) !important;
margin-top: 0 !important;
}

/* En caso de que el navegador no soporte :has */
.dist-hero-premium:first-child {
margin-top: 0 !important;
}


/* ========================
FIX V10 - correcciones finales visuales
======================== */

/* Favoritos de la manada: imagen llena el recuadro sin marco blanco */
#favoritosGrid .card-img-wrap {
background: transparent !important;
padding: 0 !important;
overflow: hidden !important;
border-radius: 28px 28px 0 0 !important;
}
#favoritosGrid .product-image-carousel {
background: transparent !important;
min-height: 280px !important;
aspect-ratio: auto !important;
height: 100% !important;
}
#favoritosGrid .product-image-carousel img {
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
object-position: center !important;
background: transparent !important;
}

/* Hero tienda: subtÃ­tulo mÃ¡s fino */
.store-experience-copy p {
font-size: clamp(1rem, 1.35vw, 1.12rem) !important;
line-height: 1.5 !important;
color: rgba(255,255,255,.9) !important;
margin-top: 6px !important;
 max-width: none !important;
    width: 100% !important;
    white-space: nowrap !important;
}

/* Expos: texto siempre legible con bloque oscuro */
.expos-copy {
    position: relative;
    z-index: 4;
    background: rgba(7, 29, 51, 0.94) !important;
    padding: 34px 32px 32px !important;
    border-radius: 34px !important;
    box-shadow: 0 22px 52px rgba(0,0,0,.14) !important;
    backdrop-filter: blur(4px);
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.expos-copy h3{
    color: rgba(255,255,255,.96) !important;
}

/* Variantes menos invasivas */
.variant-choice {
padding: 7px 16px !important;
min-height: 0 !important;
font-size: .9rem !important;
line-height: 1.15 !important;
border-width: 1px !important;
box-shadow: none !important;
background: #f6f1ea !important;
}
.variant-choice.active,
.variant-choice:hover {
background: #fff !important;
border-color: var(--orange) !important;
color: var(--orange) !important;
box-shadow: none !important;
}
.card-body .variant-choice { padding: 7px 14px !important; min-height: 0 !important; }
.detail-variant-pills {
grid-template-columns: repeat(2, minmax(0, max-content)) !important;
justify-content: start !important;
gap: 10px !important;
}
.detail-variant-pills .variant-choice,
.variant-pill-row .variant-choice {
width: auto !important;
min-width: 0 !important;
}
.variant-pill-row {
gap: 10px !important;
}

@media (max-width: 640px) {
.detail-variant-pills {
    grid-template-columns: 1fr !important;
}
}

/* =========================================================
DISTRIBUIDORES CANNIET PRO - ESTILOS COMPLETOS
Pegar al final de css/styles.css
Sin emojis: iconos vÃ­a FontAwesome
========================================================= */
:root {
--dist-dark: var(--dark, #0f1f2e);
--dist-orange: var(--orange, #de7d11);
--dist-orange-light: var(--orange-light, #ff9b35);
--dist-yellow: var(--yellow, #f5c318);
--dist-bg: var(--bg, #fcfaf7);
--dist-bg2: var(--bg2, #f4f0eb);
--dist-radius: var(--radius, 26px);
--dist-shadow: 0 22px 55px rgba(15,31,46,0.10);
--dist-shadow-soft: 0 14px 34px rgba(15,31,46,0.07);
}

body.distributor-page {
background: var(--dist-bg) !important;
}

body.distributor-page .page-spacer {
padding-top: 0 !important;
margin-top: 0 !important;
}

body.distributor-page .dist-whatsapp-link {
text-decoration: none !important;
}

body.distributor-page .dist-mail-link {
display: inline-flex !important;
align-items: center !important;
gap: 8px !important;
margin-top: 14px !important;
color: var(--dist-dark) !important;
font-family: 'FormaMedium', sans-serif !important;
font-size: 0.92rem !important;
text-decoration: underline !important;
text-underline-offset: 4px !important;
}

/* Header visible al hacer scroll, igual que index */
body.distributor-page header.header-visible,
body.distributor-page header.show-now {
transform: translateY(0) !important;
opacity: 1 !important;
pointer-events: auto !important;
}

/* ======================== HERO DISTRIBUIDORES ======================== */
body.distributor-page .dist-hero-premium {
position: relative !important;
overflow: hidden !important;
min-height: 92vh !important;
display: flex !important;
align-items: center !important;
background:
    linear-gradient(90deg, rgba(252,250,247,0.97) 0%, rgba(252,250,247,0.91) 35%, rgba(252,250,247,0.56) 67%, rgba(15,31,46,0.26) 100%),
    url('https://i.postimg.cc/YS5M5TVx/Chat-GPT-Image-8-jun-2026-12-48-17-p-m.png') center right / cover no-repeat !important;
padding: 96px clamp(18px, 5vw, 80px) 76px !important;
}

body.distributor-page .dist-hero-premium::after {
content: "" !important;
position: absolute !important;
inset: 0 !important;
background:
    radial-gradient(circle at 18% 22%, rgba(222,125,17,0.10), transparent 26%),
    radial-gradient(circle at 90% 88%, rgba(15,31,46,0.20), transparent 32%) !important;
pointer-events: none !important;
}

body.distributor-page .dist-hero-bg-shape {
display: none !important;
}

body.distributor-page .dist-hero-premium-inner {
position: relative !important;
z-index: 2 !important;
width: 100% !important;
max-width: 1280px !important;
margin: 0 auto !important;
display: grid !important;
grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr) !important;
gap: clamp(36px, 5vw, 76px) !important;
align-items: center !important;
}

body.distributor-page .dist-hero-copy {
max-width: 680px !important;
}

body.distributor-page .dist-eyebrow,
body.distributor-page .dist-section-label {
display: inline-flex !important;
align-items: center !important;
gap: 11px !important;
background: rgba(255,255,255,0.92) !important;
color: var(--dist-orange) !important;
border: 1px solid rgba(222,125,17,0.25) !important;
box-shadow: 0 14px 34px rgba(15,31,46,0.06) !important;
border-radius: 999px !important;
padding: 9px 18px !important;
font-family: 'FormaMedium', sans-serif !important;
font-size: 0.75rem !important;
text-transform: uppercase !important;
letter-spacing: 0.08em !important;
margin-bottom: 24px !important;
}

body.distributor-page .dist-eyebrow::before,
body.distributor-page .dist-section-label::before {
content: "" !important;
width: 26px !important;
height: 2px !important;
background: var(--dist-orange) !important;
border-radius: 999px !important;
}

body.distributor-page .dist-hero-copy h1 {
font-family: 'FormaMedium', sans-serif !important;
color: var(--dist-dark) !important;
font-size: clamp(3.2rem, 5.4vw, 5.25rem) !important;
line-height: 0.96 !important;
letter-spacing: -0.06em !important;
margin: 0 0 24px !important;
max-width: 680px !important;
}

body.distributor-page .dist-hero-copy h1 span {
display: block !important;
color: var(--dist-orange) !important;
}

body.distributor-page .dist-hero-copy > p {
max-width: 620px !important;
color: #3f3f3f !important;
font-size: clamp(1rem, 1.25vw, 1.15rem) !important;
line-height: 1.65 !important;
margin: 0 0 28px !important;
}

body.distributor-page .dist-hero-buttons {
display: flex !important;
gap: 14px !important;
flex-wrap: wrap !important;
align-items: center !important;
}

body.distributor-page .dist-btn-main {
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
gap: 10px !important;
background: var(--dist-orange) !important;
color: #fff !important;
font-family: 'FormaMedium', sans-serif !important;
padding: 18px 30px !important;
border-radius: 999px !important;
border: none !important;
text-decoration: none !important;
box-shadow: 0 18px 38px rgba(222,125,17,0.26) !important;
transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
}

body.distributor-page .dist-btn-main:hover {
background: var(--dist-dark) !important;
transform: translateY(-3px) !important;
box-shadow: 0 22px 44px rgba(15,31,46,0.24) !important;
}

body.distributor-page .dist-btn-main i {
color: #fff !important;
}

body.distributor-page .dist-hero-note {
display: block !important;
max-width: 520px !important;
margin-top: 14px !important;
color: #666 !important;
font-size: 0.92rem !important;
line-height: 1.55 !important;
}

body.distributor-page .dist-hero-trust {
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
gap: 16px !important;
max-width: 540px !important;
margin-top: 36px !important;
}

body.distributor-page .dist-hero-trust > div {
background: rgba(255,255,255,0.9) !important;
border: 1px solid rgba(15,31,46,0.06) !important;
border-radius: 18px !important;
padding: 18px 20px !important;
box-shadow: 0 15px 34px rgba(15,31,46,0.07) !important;
}

body.distributor-page .dist-hero-trust strong {
display: block !important;
color: var(--dist-dark) !important;
font-family: 'FormaMedium', sans-serif !important;
font-size: clamp(1.3rem, 2vw, 1.65rem) !important;
line-height: 1.05 !important;
}

body.distributor-page .dist-hero-trust span {
display: block !important;
color: #666 !important;
font-size: 0.9rem !important;
margin-top: 6px !important;
}

body.distributor-page .dist-hero-visual {
position: relative !important;
min-height: auto !important;
display: flex !important;
align-items: center !important;
justify-content: flex-end !important;
}

body.distributor-page .dist-product-orbit {
display: none !important;
}

body.distributor-page .dist-info-card {
position: relative !important;
right: auto !important;
bottom: auto !important;
width: min(100%, 460px) !important;
background: rgba(15,31,46,0.94) !important;
backdrop-filter: blur(10px) !important;
color: #fff !important;
border-radius: 30px !important;
padding: 38px 40px !important;
box-shadow: 0 28px 70px rgba(15,31,46,0.26) !important;
border: 1px solid rgba(255,255,255,0.08) !important;
z-index: 5 !important;
}

body.distributor-page .dist-info-card-header {
display: flex !important;
align-items: center !important;
gap: 8px !important;
color: var(--dist-yellow) !important;
font-family: 'FormaMedium', sans-serif !important;
margin-bottom: 12px !important;
}

body.distributor-page .dist-info-card h3 {
color: #fff !important;
font-size: clamp(1.9rem, 3vw, 2.65rem) !important;
line-height: 1.08 !important;
margin-bottom: 16px !important;
letter-spacing: -0.035em !important;
}

body.distributor-page .dist-info-card p,
body.distributor-page .dist-info-card li {
color: rgba(255,255,255,0.86) !important;
}

body.distributor-page .dist-info-card ul {
list-style: none !important;
padding: 0 !important;
margin: 26px 0 0 !important;
display: grid !important;
gap: 18px !important;
}

body.distributor-page .dist-info-card li {
position: relative !important;
padding-left: 42px !important;
line-height: 1.45 !important;
}

body.distributor-page .dist-info-card li::before {
content: "\f00c" !important;
font-family: "Font Awesome 6 Free" !important;
font-weight: 900 !important;
position: absolute !important;
left: 0 !important;
top: 0 !important;
width: 27px !important;
height: 27px !important;
border-radius: 50% !important;
background: rgba(231,188,21,0.18) !important;
color: var(--dist-yellow) !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
font-size: 0.75rem !important;
}

/* ======================== SECCIONES DISTRIBUIDORES ======================== */
body.distributor-page .dist-section {
padding: clamp(58px, 7vw, 90px) clamp(18px, 5vw, 60px) !important;
}

body.distributor-page .dist-section.alt {
background: #fff !important;
}

body.distributor-page .dist-container {
max-width: 1180px !important;
margin: 0 auto !important;
}

body.distributor-page .dist-title,
body.distributor-page .dist-benefits-header,
body.distributor-page .dist-portfolio-clean__header {
text-align: center !important;
max-width: 860px !important;
margin: 0 auto 42px !important;
letter-spacing: 1rem;
}

body.distributor-page .dist-title h2,
body.distributor-page .dist-benefits-header h2,
body.distributor-page .dist-portfolio-clean__header h2 {
color: var(--dist-dark) !important;
font-family: 'FormaMedium', sans-serif !important;
font-size: clamp(2rem, 4vw, 3.1rem) !important;
line-height: 1.06 !important;
margin: 0 0 14px !important;
letter-spacing: -0.035em !important;
}

body.distributor-page .dist-title p,
body.distributor-page .dist-benefits-header p,
body.distributor-page .dist-portfolio-clean__header p {
color: #666 !important;
font-size: 1.04rem !important;
line-height: 1.7 !important;
}

body.distributor-page .dist-proof-strip {
background: var(--dist-dark) !important;
color: #fff !important;
padding: 28px clamp(18px, 5vw, 60px) !important;
}

body.distributor-page .dist-proof-inner {
max-width: 1180px !important;
margin: 0 auto !important;
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
gap: 18px !important;
}

body.distributor-page .dist-proof-item {
background: rgba(255,255,255,0.07) !important;
border: 1px solid rgba(255,255,255,0.12) !important;
border-radius: 20px !important;
padding: 22px !important;
}

body.distributor-page .dist-proof-item strong {
display: block !important;
color: var(--dist-yellow) !important;
font-family: 'FormaMedium', sans-serif !important;
font-size: clamp(1.45rem, 2.4vw, 2rem) !important;
margin-bottom: 6px !important;
}

body.distributor-page .dist-proof-item span {
color: rgba(255,255,255,0.84) !important;
line-height: 1.45 !important;
}

body.distributor-page .dist-starter-card {
background: linear-gradient(135deg, #fff, #fff8ef) !important;
border: 1px solid rgba(222,125,17,0.18) !important;
border-radius: 34px !important;
padding: clamp(34px, 5vw, 58px) !important;
display: grid !important;
grid-template-columns: 0.9fr 1.1fr !important;
gap: clamp(26px, 5vw, 60px) !important;
align-items: center !important;
box-shadow: var(--dist-shadow) !important;
}

body.distributor-page .dist-starter-card h2 {
font-family: 'FormaMedium', sans-serif !important;
color: var(--dist-dark) !important;
font-size: clamp(2rem, 3.6vw, 3rem) !important;
line-height: 1.06 !important;
margin: 0 0 14px !important;
letter-spacing: -0.035em !important;
}

body.distributor-page .dist-starter-card p {
color: #666 !important;
line-height: 1.75 !important;
margin-bottom: 22px !important;
}

body.distributor-page .starter-details {
display: grid !important;
gap: 14px !important;
}

body.distributor-page .starter-details > div {
background: #fff !important;
border-radius: 18px !important;
padding: 18px 20px !important;
border: 1px solid rgba(15,31,46,0.07) !important;
box-shadow: 0 12px 26px rgba(15,31,46,0.06) !important;
}

body.distributor-page .starter-details strong {
display: block !important;
color: var(--dist-dark) !important;
font-family: 'FormaMedium', sans-serif !important;
margin-bottom: 5px !important;
}

body.distributor-page .starter-details span {
color: #666 !important;
font-size: 0.95rem !important;
}

body.distributor-page .dist-benefits-premium {
padding: clamp(58px, 7vw, 90px) clamp(18px, 5vw, 60px) !important;
}

body.distributor-page .dist-benefits-premium-grid {
max-width: 1180px !important;
margin: 0 auto !important;
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
gap: 22px !important;
}

body.distributor-page .dist-premium-benefit-card {
position: relative !important;
overflow: hidden !important;
background: #fff !important;
border: 1px solid rgba(15,31,46,0.07) !important;
border-radius: 26px !important;
padding: 30px 28px !important;
box-shadow: 0 14px 38px rgba(15,31,46,0.07) !important;
transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

body.distributor-page .dist-premium-benefit-card:hover {
transform: translateY(-6px) !important;
box-shadow: 0 24px 54px rgba(15,31,46,0.12) !important;
}

body.distributor-page .dist-premium-benefit-card.featured {
background: var(--dist-dark) !important;
color: #fff !important;
}

body.distributor-page .dist-premium-benefit-card.featured h3,
body.distributor-page .dist-premium-benefit-card.featured p {
color: #fff !important;
}

body.distributor-page .dist-premium-benefit-card.featured-light {
background: #fff8ef !important;
border-color: rgba(222,125,17,0.22) !important;
}

body.distributor-page .dist-premium-icon {
width: 58px !important;
height: 58px !important;
border-radius: 18px !important;
background: #fff5ea !important;
color: var(--dist-orange) !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
font-size: 1.25rem !important;
margin-bottom: 20px !important;
}

body.distributor-page .dist-premium-benefit-card.featured .dist-premium-icon {
background: rgba(255,255,255,0.12) !important;
color: var(--dist-yellow) !important;
}

body.distributor-page .dist-premium-benefit-card h3 {
color: var(--dist-dark) !important;
font-size: 1.25rem !important;
margin-bottom: 10px !important;
}

body.distributor-page .dist-premium-benefit-card p {
color: #666 !important;
font-size: 0.95rem !important;
line-height: 1.65 !important;
}

body.distributor-page .dist-context {
background: #fff !important;
padding: clamp(58px, 7vw, 90px) clamp(18px, 5vw, 60px) !important;
}

body.distributor-page .dist-context-inner {
max-width: 1180px !important;
margin: 0 auto !important;
display: grid !important;
grid-template-columns: 0.9fr 1.1fr !important;
gap: clamp(28px, 5vw, 60px) !important;
align-items: center !important;
}

body.distributor-page .dist-context-text h2 {
color: var(--dist-dark) !important;
font-family: 'FormaMedium', sans-serif !important;
font-size: clamp(2rem, 4vw, 3rem) !important;
line-height: 1.06 !important;
margin: 0 0 14px !important;
letter-spacing: -0.035em !important;
}

body.distributor-page .dist-context-text p {
color: #666 !important;
line-height: 1.75 !important;
margin-bottom: 18px !important;
}

body.distributor-page .dist-context-list {
display: grid !important;
gap: 12px !important;
margin-top: 20px !important;
}

body.distributor-page .dist-context-list div {
display: flex !important;
gap: 10px !important;
align-items: flex-start !important;
color: var(--dist-dark) !important;
font-family: 'FormaMedium', sans-serif !important;
}

body.distributor-page .dist-context-list i {
color: var(--dist-orange) !important;
margin-top: 4px !important;
}

body.distributor-page .dist-context-image,
body.distributor-page .dist-portfolio-clean__image {
border-radius: 34px !important;
overflow: hidden !important;
background: transparent !important;
min-height: 420px !important;
box-shadow: var(--dist-shadow) !important;
position: relative !important;
padding: 0 !important;
border: none !important;
}

body.distributor-page .dist-context-image img,
body.distributor-page .dist-portfolio-clean__image img {
width: 100% !important;
height: 100% !important;
min-height: 420px !important;
object-fit: cover !important;
object-position: center !important;
display: block !important;
border-radius: 34px !important;
}

body.distributor-page .dist-context-image::after {
content: "Imagen de producto en contexto" !important;
position: absolute !important;
left: 18px !important;
bottom: 18px !important;
background: rgba(15,31,46,0.88) !important;
color: #fff !important;
padding: 10px 14px !important;
border-radius: 999px !important;
font-family: 'FormaMedium', sans-serif !important;
font-size: 0.82rem !important;
}

body.distributor-page .dist-audience-premium {
padding: clamp(58px, 7vw, 90px) clamp(18px, 5vw, 60px) !important;
background: var(--dist-bg2) !important;
}

body.distributor-page .dist-audience-premium-inner {
max-width: 1180px !important;
margin: 0 auto !important;
display: grid !important;
grid-template-columns: 0.85fr 1.15fr !important;
gap: clamp(28px, 5vw, 60px) !important;
align-items: start !important;
}

body.distributor-page .dist-audience-intro h2 {
color: var(--dist-dark) !important;
font-family: 'FormaMedium', sans-serif !important;
font-size: clamp(2rem, 3.6vw, 3rem) !important;
line-height: 1.06 !important;
margin: 0 0 14px !important;
letter-spacing: -0.035em !important;
}

body.distributor-page .dist-audience-intro p {
color: #666 !important;
line-height: 1.75 !important;
}

body.distributor-page .dist-audience-note {
margin-top: 22px !important;
background: #fff !important;
border-left: 5px solid var(--dist-orange) !important;
border-radius: 18px !important;
padding: 18px 20px !important;
color: #666 !important;
box-shadow: 0 12px 28px rgba(15,31,46,0.06) !important;
}

body.distributor-page .dist-audience-note strong {
color: var(--dist-dark) !important;
}

body.distributor-page .dist-audience-carousel-header {
display: flex !important;
justify-content: space-between !important;
align-items: center !important;
margin-bottom: 14px !important;
color: #666 !important;
font-size: 0.9rem !important;
}

body.distributor-page .dist-audience-carousel-header span {
color: var(--dist-dark) !important;
font-family: 'FormaMedium', sans-serif !important;
}

body.distributor-page .dist-audience-carousel {
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
gap: 16px !important;
}

body.distributor-page .dist-audience-slide {
background: #fff !important;
border-radius: 22px !important;
padding: 24px 22px !important;
box-shadow: 0 12px 30px rgba(15,31,46,0.07) !important;
border: 1px solid rgba(15,31,46,0.06) !important;
}

body.distributor-page .dist-audience-slide.accent {
background: #fff8ef !important;
}

body.distributor-page .dist-audience-card-icon {
width: 50px !important;
height: 50px !important;
border-radius: 16px !important;
background: #fff5ea !important;
color: var(--dist-orange) !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
margin-bottom: 16px !important;
}

body.distributor-page .dist-audience-slide h3 {
color: var(--dist-dark) !important;
margin-bottom: 8px !important;
}

body.distributor-page .dist-audience-slide p {
color: #666 !important;
line-height: 1.55 !important;
font-size: 0.92rem !important;
}

body.distributor-page .dist-portfolio-clean {
padding: clamp(58px, 7vw, 90px) clamp(18px, 5vw, 60px) !important;
background: #fff !important;
}

body.distributor-page .dist-portfolio-clean__grid {
max-width: 1180px !important;
margin: 0 auto !important;
display: grid !important;
grid-template-columns: 0.9fr 1.1fr !important;
gap: clamp(28px, 5vw, 60px) !important;
align-items: center !important;
}

body.distributor-page .dist-portfolio-clean__content {
display: grid !important;
gap: 18px !important;
}

body.distributor-page .dist-portfolio-clean__item {
background: var(--dist-bg) !important;
border: 1px solid rgba(15,31,46,0.06) !important;
border-radius: 22px !important;
padding: 24px !important;
}

body.distributor-page .dist-portfolio-clean__item h3 {
color: var(--dist-dark) !important;
margin-bottom: 8px !important;
}

body.distributor-page .dist-portfolio-clean__item p {
color: #666 !important;
line-height: 1.6 !important;
}

body.distributor-page .dist-process {
max-width: 1180px !important;
margin: 0 auto !important;
display: grid !important;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
gap: 18px !important;
align-items: stretch !important;
}

body.distributor-page .dist-step {
background: #fff !important;
border-radius: 24px !important;
padding: 26px 22px 28px !important;
border: 1px solid rgba(222,125,17,0.22) !important;
display: flex !important;
flex-direction: column !important;
align-items: flex-start !important;
gap: 0 !important;
min-height: 300px !important;
box-shadow: 0 14px 34px rgba(15,31,46,0.06) !important;
}

body.distributor-page .dist-step-number {
width: 52px !important;
height: 52px !important;
min-width: 52px !important;
min-height: 52px !important;
border-radius: 50% !important;
background: var(--dist-orange) !important;
color: #fff !important;
font-family: 'FormaMedium', sans-serif !important;
font-size: 1.25rem !important;
line-height: 1 !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
margin: 0 0 20px !important;
}

body.distributor-page .dist-step h3 {
color: var(--dist-dark) !important;
font-family: 'FormaMedium', sans-serif !important;
font-size: 1.18rem !important;
line-height: 1.16 !important;
letter-spacing: -0.018em !important;
margin: 0 0 14px !important;
min-height: 58px !important;
text-align: left !important;
}

body.distributor-page .dist-step p {
color: #666 !important;
font-family: 'FormaRegular', sans-serif !important;
font-size: 0.95rem !important;
line-height: 1.58 !important;
text-align: left !important;
margin: 0 !important;
max-width: none !important;
word-break: normal !important;
overflow-wrap: normal !important;
hyphens: none !important;
}

body.distributor-page .dist-final-cta {
background: linear-gradient(135deg, var(--dist-orange), var(--dist-orange-light)) !important;
border-radius: 34px !important;
padding: clamp(38px, 6vw, 70px) !important;
text-align: center !important;
color: #fff !important;
position: relative !important;
overflow: hidden !important;
box-shadow: 0 24px 55px rgba(222,125,17,0.26) !important;
}

body.distributor-page .dist-final-cta::before {
content: "" !important;
position: absolute !important;
left: -55px !important;
top: -65px !important;
width: 190px !important;
height: 190px !important;
border-radius: 50% !important;
background: rgba(255,255,255,0.16) !important;
}

body.distributor-page .dist-final-cta h2 {
position: relative !important;
color: #fff !important;
font-size: clamp(2rem, 4vw, 3.2rem) !important;
line-height: 1.05 !important;
margin-bottom: 14px !important;
}

body.distributor-page .dist-final-cta p {
position: relative !important;
color: rgba(255,255,255,0.92) !important;
font-size: 1.1rem !important;
line-height: 1.7 !important;
max-width: 680px !important;
margin: 0 auto 28px !important;
}

body.distributor-page .dist-final-cta .dist-btn-main {
position: relative !important;
background: var(--dist-dark) !important;
}

body.distributor-page .dist-final-cta .dist-btn-main:hover {
background: #06121d !important;
}

body.distributor-page .dist-floating-whatsapp {
position: fixed !important;
right: 24px !important;
bottom: 110px !important;
z-index: 80 !important;
background: #25D366 !important;
color: #fff !important;
padding: 14px 20px !important;
border-radius: 999px !important;
font-family: 'FormaMedium', sans-serif !important;
text-decoration: none !important;
box-shadow: 0 14px 34px rgba(37, 211, 102, 0.32) !important;
display: inline-flex !important;
align-items: center !important;
gap: 8px !important;
}

body.distributor-page .dist-floating-whatsapp i {
color: #fff !important;
}

/* FAQ distribuidores */
body.distributor-page .dist-faq-grid {
max-width: 1100px !important;
margin: 36px auto 0 !important;
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
gap: 18px !important;
}

body.distributor-page .dist-faq-card {
background: #fff !important;
border: 1px solid rgba(15,31,46,0.07) !important;
border-radius: 22px !important;
padding: 24px !important;
box-shadow: var(--dist-shadow-soft) !important;
}

body.distributor-page .dist-faq-card h3 {
color: var(--dist-dark) !important;
font-size: 1.15rem !important;
margin-bottom: 10px !important;
}

body.distributor-page .dist-faq-card p {
color: #666 !important;
line-height: 1.6 !important;
font-size: 0.95rem !important;
}

/* ======================== RESPONSIVE DISTRIBUIDORES ======================== */
@media (max-width: 1080px) {
body.distributor-page .dist-hero-premium {
    min-height: auto !important;
    background:
        linear-gradient(180deg, rgba(252,250,247,0.97) 0%, rgba(252,250,247,0.90) 58%, rgba(15,31,46,0.22) 100%),
        url('https://i.postimg.cc/YS5M5TVx/Chat-GPT-Image-8-jun-2026-12-48-17-p-m.png') center / cover no-repeat !important;
}

body.distributor-page .dist-hero-premium-inner,
body.distributor-page .dist-starter-card,
body.distributor-page .dist-context-inner,
body.distributor-page .dist-audience-premium-inner,
body.distributor-page .dist-portfolio-clean__grid {
    grid-template-columns: 1fr !important;
}

body.distributor-page .dist-hero-copy {
    max-width: 760px !important;
}

body.distributor-page .dist-hero-visual {
    justify-content: flex-start !important;
}

body.distributor-page .dist-info-card {
    width: 100% !important;
    max-width: 620px !important;
}

body.distributor-page .dist-benefits-premium-grid,
body.distributor-page .dist-audience-carousel,
body.distributor-page .dist-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
}

@media (max-width: 700px) {
body.distributor-page .dist-hero-premium {
    padding: 92px 18px 52px !important;
}

body.distributor-page .dist-hero-copy h1 {
    font-size: clamp(2.85rem, 14vw, 4rem) !important;
    line-height: 0.98 !important;
}

body.distributor-page .dist-hero-buttons .dist-btn-main {
    width: 100% !important;
}

body.distributor-page .dist-hero-trust,
body.distributor-page .dist-proof-inner,
body.distributor-page .dist-benefits-premium-grid,
body.distributor-page .dist-audience-carousel,
body.distributor-page .dist-faq-grid {
    grid-template-columns: 1fr !important;
}

body.distributor-page .dist-info-card {
    padding: 28px 24px !important;
    border-radius: 24px !important;
}

body.distributor-page .dist-info-card h3 {
    font-size: 2rem !important;
}

body.distributor-page .dist-info-card li {
    padding-left: 36px !important;
}

body.distributor-page .dist-step {
    min-height: auto !important;
}

body.distributor-page .dist-floating-whatsapp {
    right: 16px !important;
    bottom: 88px !important;
    padding: 13px 16px !important;
    font-size: 0.9rem !important;
}

body.distributor-page .dist-context-image,
body.distributor-page .dist-portfolio-clean__image,
body.distributor-page .dist-context-image img,
body.distributor-page .dist-portfolio-clean__image img {
    min-height: 320px !important;
    border-radius: 24px !important;
}
}



/* =========================================================
DISTRIBUIDORES - CSS MOVIDO DESDE distribuidores.html
Editado y con selectores aislados para no afectar otras pÃ¡ginas
========================================================= */
body.distributor-page {
        --dist-dark: var(--dark, #0f1f2e);
        --dist-ink: #13293d;
        --dist-orange: var(--orange, #de7d11);
        --dist-orange-light: var(--orange-light, #ff9d3b);
        --dist-yellow: var(--yellow, #e7bc15);
        --dist-cream: #fff7ed;
        --dist-bg: #fcfaf7;
        --dist-soft: #f4f0eb;
        --dist-line: rgba(15,31,46,0.10);
        --dist-shadow: 0 24px 70px rgba(15,31,46,0.12);
        --dist-shadow-soft: 0 14px 38px rgba(15,31,46,0.08);
    }

    body.distributor-page {
        background:
            radial-gradient(circle at 96% 8%, rgba(222,125,17,0.10), transparent 28%),
            radial-gradient(circle at 4% 40%, rgba(15,31,46,0.05), transparent 24%),
            var(--dist-bg);
        color: var(--dist-dark);
    }

    body.distributor-page .page-spacer { margin: 0; padding: 0; }

    body.distributor-page img { display: block; }

    body.distributor-page p {
        text-align: left;
    }

    body.distributor-page .dist-page {
        overflow: hidden;
    }

    body.distributor-page .dist-container {
        width: min(1180px, calc(100% - 40px));
        margin: 0 auto;
    }

    body.distributor-page .dist-section {
        padding: clamp(58px, 7vw, 96px) 0;
    }

    body.distributor-page .dist-section--white {
        background: #fff;
    }

    body.distributor-page .dist-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 11px;
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid rgba(222,125,17,0.28);
        background: rgba(255,255,255,0.78);
        color: var(--dist-orange);
        font-family: 'FormaMedium', sans-serif;
        font-size: 0.74rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        box-shadow: 0 16px 42px rgba(15,31,46,0.06);
    }

    body.distributor-page .dist-eyebrow::before {
        content: "";
        width: 28px;
        height: 2px;
        border-radius: 999px;
        background: var(--dist-orange);
    }

    body.distributor-page .dist-title {
        max-width: 860px;
        margin: 0 auto 42px;
        text-align: center;
    }

    body.distributor-page .dist-title .dist-eyebrow {
        margin-bottom: 18px;
    }


    body.distributor-page .dist-title p {
        max-width: 720px;
        margin: 16px auto 0;
        color: #666;
        font-size: 1.08rem;
        line-height: 1.7;
        text-align: center;
    }

    body.distributor-page .dist-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border: none;
        border-radius: 999px;
        padding: 16px 26px;
        text-decoration: none;
        font-family: 'FormaMedium', sans-serif;
        font-size: 1rem;
        transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
        cursor: pointer;
    }

    body.distributor-page .dist-btn--primary {
        background: var(--dist-orange);
        color: #fff;
        box-shadow: 0 18px 38px rgba(222,125,17,0.28);
    }

    body.distributor-page .dist-btn--primary:hover {
        background: var(--dist-dark);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 24px 48px rgba(15,31,46,0.23);
    }

    body.distributor-page .dist-btn--dark {
        background: var(--dist-dark);
        color: #fff;
        box-shadow: 0 18px 38px rgba(15,31,46,0.20);
    }

    body.distributor-page .dist-btn--dark:hover {
        background: #06121d;
        transform: translateY(-3px);
    }

    body.distributor-page .dist-btn--ghost {
        border: 1.5px solid rgba(15,31,46,0.18);
        background: rgba(255,255,255,0.65);
        color: var(--dist-dark);
    }

    body.distributor-page .dist-btn--ghost:hover {
        border-color: var(--dist-orange);
        color: var(--dist-orange);
        transform: translateY(-3px);
    }

    body.distributor-page .dist-btn i {
        color: currentColor;
    }

    /* HERO */
body.distributor-page .dist-hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: clamp(76px, 8vw, 118px) 0 clamp(44px, 6vw, 78px);
        position: relative;
    }

    body.distributor-page .dist-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg, rgba(252,250,247,0.98) 0%, rgba(252,250,247,0.88) 42%, rgba(252,250,247,0.20) 100%),
            url('https://i.postimg.cc/xTwcPCJ8/Chat-GPT-Image-8-jun-2026-12-16-29-p-m.png') center right/cover no-repeat;
        z-index: 0;
    }

    body.distributor-page .dist-hero::after {
        content: "";
        position: absolute;
        right: -10vw;
        top: 6vh;
        width: 38vw;
        height: 38vw;
        border: 1px solid rgba(222,125,17,0.18);
        border-radius: 50%;
        z-index: 1;
    }

    body.distributor-page .dist-hero__inner {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1.02fr .98fr;
        gap: clamp(30px, 5vw, 70px);
        align-items: center;
    }

    body.distributor-page .dist-hero__copy {
        max-width: 720px;
    }

    body.distributor-page .dist-hero__copy .dist-eyebrow {
        margin-bottom: 22px;
    }

    body.distributor-page .dist-hero h1 {
        color: var(--dist-dark);
        font-family: 'FormaMedium', sans-serif;
        font-size: clamp(3.1rem, 5vw, 6rem);
        line-height: 0.98;
        letter-spacing: -0.065em;
        margin: 0 0 24px;
    }

    body.distributor-page .dist-hero h1 span {
        color: var(--dist-orange);
        display: block;
    }

    body.distributor-page .dist-hero__lead {
        max-width: 650px;
        color: #484848;
        font-size: clamp(1.02rem, 1.4vw, 1.22rem);
        line-height: 1.72;
        margin: 0 0 26px;
    }

    body.distributor-page .dist-hero__actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        align-items: center;
    }

    body.distributor-page .dist-hero__micro {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 28px;
    }

    body.distributor-page .dist-hero__micro span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.80);
        border: 1px solid rgba(15,31,46,0.07);
        border-radius: 999px;
        padding: 10px 14px;
        color: var(--dist-dark);
        font-family: 'FormaMedium', sans-serif;
        font-size: .9rem;
        box-shadow: 0 12px 28px rgba(15,31,46,0.05);
    }

    body.distributor-page .dist-hero__micro i { color: var(--dist-orange); }

    body.distributor-page .dist-hero__panel {
        justify-self: end;
        width: min(100%, 500px);
        background: rgba(15,31,46,0.94);
        color: #fff;
        border-radius: 34px;
        padding: clamp(28px, 4vw, 42px);
        box-shadow: 0 34px 80px rgba(15,31,46,0.30);
        border: 1px solid rgba(255,255,255,0.12);
        backdrop-filter: blur(8px);
    }

    body.distributor-page .dist-hero__panel h2 {
        color: #fff;
        font-size: clamp(1.7rem, 2vw, 2.45rem);
        line-height: 1.08;
        margin-bottom: 16px;
    }

    body.distributor-page .dist-hero__panel p {
        color: rgba(255,255,255,0.78);
        line-height: 1.65;
        margin-bottom: 22px;
    }

    body.distributor-page .dist-panel-list {
        display: grid;
        gap: 12px;
    }

    body.distributor-page .dist-panel-list li {
        list-style: none;
        display: grid;
        grid-template-columns: 34px 1fr;
        gap: 12px;
        align-items: start;
        color: rgba(255,255,255,0.88);
        line-height: 1.45;
    }

    body.distributor-page .dist-panel-list i {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        background: rgba(222,125,17,0.18);
        color: var(--dist-yellow);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* PROOF */
body.distributor-page .dist-proof {
        position: relative;
        z-index: 3;
        margin-top: -34px;
    }

    body.distributor-page .dist-proof__grid {
        background: #fff;
        border: 1px solid rgba(15,31,46,0.06);
        border-radius: 26px;
        box-shadow: var(--dist-shadow);
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow: hidden;
    }

    body.distributor-page .dist-proof__item {
        padding: 28px 24px;
        border-right: 1px solid rgba(15,31,46,0.07);
    }

    body.distributor-page .dist-proof__item:last-child {
        border-right: none;
    }

    body.distributor-page .dist-proof__item strong {
        display: block;
        font-family: 'FormaMedium', sans-serif;
        font-size: clamp(1.35rem, 2.2vw, 2rem);
        color: var(--dist-dark);
        line-height: 1;
        margin-bottom: 7px;
    }

    body.distributor-page .dist-proof__item span {
        color: #666;
        line-height: 1.4;
        font-size: .95rem;
    }

    /* STARTER */
body.distributor-page .dist-starter {
        padding-top: clamp(74px, 9vw, 118px);
    }

    body.distributor-page .dist-starter-card {
        background:
            radial-gradient(circle at 96% 18%, rgba(222,125,17,0.14), transparent 30%),
            linear-gradient(135deg, #fff, #fff7ed);
        border: 1px solid rgba(222,125,17,0.18);
        border-radius: 36px;
        box-shadow: var(--dist-shadow);
        padding: clamp(34px, 5vw, 62px);
        display: grid;
        grid-template-columns: .88fr 1.12fr;
        gap: clamp(30px, 5vw, 62px);
        align-items: center;
    }

    body.distributor-page .dist-starter h2,

    body.distributor-page .dist-section-copy h2 {
        color: var(--dist-dark);
        font-family: 'FormaMedium', sans-serif;
        font-size: clamp(2.1rem, 4vw, 3.35rem);
        line-height: 1.04;
        letter-spacing: -0.05em;
        margin: 18px 0 16px;
    }

    body.distributor-page .dist-starter p,

    body.distributor-page .dist-section-copy p {
        color: #666;
        line-height: 1.75;
        font-size: 1.03rem;
        margin-bottom: 22px;
    }

    body.distributor-page .dist-starter-list {
        display: grid;
        gap: 16px;
    }

    body.distributor-page .dist-starter-item {
        background: rgba(255,255,255,0.88);
        border: 1px solid rgba(15,31,46,0.07);
        border-radius: 22px;
        padding: 20px 22px;
        box-shadow: 0 12px 28px rgba(15,31,46,0.06);
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 16px;
        align-items: start;
    }

    body.distributor-page .dist-starter-item i {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        background: #fff5ea;
        color: var(--dist-orange);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body.distributor-page .dist-starter-item strong {
        display: block;
        color: var(--dist-dark);
        font-family: 'FormaMedium', sans-serif;
        margin-bottom: 5px;
    }

    body.distributor-page .dist-starter-item span {
        color: #666;
        line-height: 1.45;
        font-size: .96rem;
    }

    /* BENEFITS */
body.distributor-page .dist-benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    body.distributor-page .dist-benefit-card {
        background: #fff;
        border: 1px solid rgba(15,31,46,0.07);
        border-radius: 28px;
        padding: 30px 28px;
        box-shadow: var(--dist-shadow-soft);
        transition: transform .24s ease, box-shadow .24s ease;
    }

    body.distributor-page .dist-benefit-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 26px 58px rgba(15,31,46,0.12);
    }

    body.distributor-page .dist-benefit-card--dark {
        background: var(--dist-dark);
        color: #fff;
    }

    body.distributor-page .dist-benefit-card--soft {
        background: #fff7ed;
        border-color: rgba(222,125,17,0.22);
    }

    body.distributor-page .dist-benefit-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        background: #fff5ea;
        color: var(--dist-orange);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.22rem;
        margin-bottom: 20px;
    }

    body.distributor-page .dist-benefit-card--dark .dist-benefit-icon {
        background: rgba(255,255,255,0.12);
        color: var(--dist-yellow);
    }

    body.distributor-page .dist-benefit-card h3 {
        color: var(--dist-dark);
        font-size: 1.28rem;
        margin: 0 0 10px;
        line-height: 1.16;
    }

    body.distributor-page .dist-benefit-card p {
        color: #666;
        font-size: .96rem;
        line-height: 1.65;
    }

    body.distributor-page .dist-benefit-card--dark h3,

    body.distributor-page .dist-benefit-card--dark p {
        color: #fff;
    }

    body.distributor-page .dist-benefit-card--dark p {
        color: rgba(255,255,255,0.82);
    }

    /* CONTEXT */
body.distributor-page .dist-context {
        background: #fff;
    }

    body.distributor-page .dist-split {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: clamp(30px, 5vw, 64px);
        align-items: center;
    }

    body.distributor-page .dist-context-image {
        min-height: 520px;
        border-radius: 34px;
        overflow: hidden;
        box-shadow: var(--dist-shadow);
        position: relative;
        background: var(--dist-soft);
    }

    body.distributor-page .dist-context-image img {
        width: 100%;
        height: 100%;
        min-height: 520px;
        object-fit: cover;
        object-position: center;
    }

    body.distributor-page .dist-context-image .dist-image-tag {
        position: absolute;
        left: 18px;
        bottom: 18px;
        background: rgba(15,31,46,0.90);
        color: #fff;
        border-radius: 999px;
        padding: 12px 16px;
        font-family: 'FormaMedium', sans-serif;
        font-size: .88rem;
        backdrop-filter: blur(6px);
    }

    body.distributor-page .dist-check-list {
        display: grid;
        gap: 13px;
        margin-top: 22px;
    }

    body.distributor-page .dist-check-list div {
        display: grid;
        grid-template-columns: 34px 1fr;
        gap: 12px;
        align-items: start;
        color: var(--dist-dark);
        font-family: 'FormaMedium', sans-serif;
    }

    body.distributor-page .dist-check-list i {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        color: var(--dist-orange);
        background: #fff5ea;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* AUDIENCE */
body.distributor-page .dist-audience {
        background: var(--dist-soft);
    }

    body.distributor-page .dist-audience-grid {
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: clamp(30px, 5vw, 64px);
        align-items: start;
    }

    body.distributor-page .dist-audience-note {
        margin-top: 24px;
        background: #fff;
        border-left: 5px solid var(--dist-orange);
        border-radius: 20px;
        padding: 20px 22px;
        box-shadow: var(--dist-shadow-soft);
        color: #666;
        line-height: 1.58;
    }

    body.distributor-page .dist-audience-note strong {
        color: var(--dist-dark);
    }

    body.distributor-page .dist-channel-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    body.distributor-page .dist-channel-card {
        background: #fff;
        border: 1px solid rgba(15,31,46,0.06);
        border-radius: 24px;
        padding: 24px 22px;
        box-shadow: 0 13px 32px rgba(15,31,46,0.07);
    }

    body.distributor-page .dist-channel-card--accent {
        background: #fff7ed;
        border-color: rgba(222,125,17,0.22);
    }

    body.distributor-page .dist-channel-card i {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        background: #fff5ea;
        color: var(--dist-orange);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }

    body.distributor-page .dist-channel-card h3 {
        color: var(--dist-dark);
        margin: 0 0 8px;
        font-size: 1.08rem;
        line-height: 1.15;
    }

    body.distributor-page .dist-channel-card p {
        color: #666;
        font-size: .92rem;
        line-height: 1.55;
    }

    /* PORTFOLIO */
body.distributor-page .dist-portfolio-visual {
        border-radius: 34px;
        overflow: hidden;
        box-shadow: var(--dist-shadow);
        min-height: 540px;
        background: var(--dist-soft);
        position: relative;
    }

    body.distributor-page .dist-portfolio-visual img {
        width: 100%;
        height: 100%;
        min-height: 540px;
        object-fit: cover;
        object-position: center;
    }

    body.distributor-page .dist-portfolio-visual .dist-image-tag {
        position: absolute;
        left: 18px;
        bottom: 18px;
        background: rgba(15,31,46,0.90);
        color: #fff;
        border-radius: 999px;
        padding: 12px 16px;
        font-family: 'FormaMedium', sans-serif;
        font-size: .88rem;
    }

    body.distributor-page .dist-portfolio-list {
        display: grid;
        gap: 16px;
    }

    body.distributor-page .dist-portfolio-item {
        background: var(--dist-bg);
        border: 1px solid rgba(15,31,46,0.07);
        border-radius: 22px;
        padding: 24px;
        display: grid;
        grid-template-columns: 46px 1fr;
        gap: 15px;
        box-shadow: 0 12px 28px rgba(15,31,46,0.05);
    }

    body.distributor-page .dist-portfolio-item i {
        width: 46px;
        height: 46px;
        border-radius: 15px;
        background: #fff5ea;
        color: var(--dist-orange);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body.distributor-page .dist-portfolio-item h3 {
        margin: 0 0 6px;
        color: var(--dist-dark);
        font-size: 1.18rem;
    }

    body.distributor-page .dist-portfolio-item p {
        color: #666;
        line-height: 1.58;
        font-size: .95rem;
    }

    /* COMPARISON */
body.distributor-page .dist-compare {
        background:
            radial-gradient(circle at 85% 12%, rgba(222,125,17,0.10), transparent 26%),
            var(--dist-dark);
        color: #fff;
    }

    body.distributor-page .dist-compare .dist-title {
        text-align: center !important;
    }

    body.distributor-page .dist-title h2 {
        color: #ffffff;
        font-family: 'FormaMedium', sans-serif;
        font-size: clamp(2rem, 4vw, 3.1rem);
        line-height: 1.35;
        margin: 0 0 14px;
        letter-spacing: 0.035em;
    }

    body.distributor-page .dist-compare .dist-title p {
        color: rgba(255,255,255,0.88) !important;
        text-align: center !important;
        max-width: 780px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body.distributor-page .dist-compare-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    body.distributor-page .dist-compare-card {
        border-radius: 30px;
        padding: 30px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.14);
    }

    body.distributor-page .dist-compare-card--highlight {
        background: #fff;
        color: var(--dist-dark);
    }

    body.distributor-page .dist-compare-card h3 {
        color: inherit;
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    body.distributor-page .dist-compare-card ul {
        display: grid;
        gap: 14px;
        padding: 0;
        margin: 0;
    }

    body.distributor-page .dist-compare-card li {
        list-style: none;
        display: grid;
        grid-template-columns: 30px 1fr;
        gap: 12px;
        align-items: start;
        line-height: 1.45;
    }

    body.distributor-page .dist-compare-card i {
        color: var(--dist-yellow);
        margin-top: 3px;
    }

    body.distributor-page .dist-compare-card--highlight i {
        color: var(--dist-orange);
    }

    /* PROCESS */
body.distributor-page .dist-process {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
        align-items: stretch;
    }

    body.distributor-page .dist-step {
        background: #fff;
        border: 1px solid rgba(222,125,17,0.22);
        border-radius: 24px;
        padding: 26px 22px 28px;
        box-shadow: var(--dist-shadow-soft);
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-height: 300px;
    }

    body.distributor-page .dist-step-number {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
        border-radius: 50%;
        background: var(--dist-orange);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'FormaMedium', sans-serif;
        font-size: 1.25rem;
        line-height: 1;
        margin: 0 0 20px;
    }

    body.distributor-page .dist-step h3 {
        color: var(--dist-dark);
        font-size: 1.18rem;
        line-height: 1.16;
        margin: 0 0 14px;
        min-height: 58px;
        text-align: left;
    }

    body.distributor-page .dist-step p {
        color: #666;
        line-height: 1.58;
        font-size: .95rem;
        text-align: left;
        word-break: normal;
        overflow-wrap: normal;
        hyphens: none;
    }

    /* FAQ */
body.distributor-page .dist-faq-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    body.distributor-page .dist-faq-card {
        background: #fff;
        border-radius: 24px;
        padding: 26px 24px;
        box-shadow: var(--dist-shadow-soft);
        border: 1px solid rgba(15,31,46,0.06);
    }

    body.distributor-page .dist-faq-card span {
        color: var(--dist-orange);
        font-family: 'FormaMedium', sans-serif;
        font-size: .74rem;
        text-transform: uppercase;
        letter-spacing: .08em;
    }

    body.distributor-page .dist-faq-card h3 {
        margin: 9px 0 10px;
        color: var(--dist-dark);
        font-size: 1.22rem;
        line-height: 1.18;
    }

    body.distributor-page .dist-faq-card p {
        color: #666;
        line-height: 1.62;
    }

    /* FINAL CTA */
body.distributor-page .dist-final {
        background: linear-gradient(135deg, var(--dist-orange), var(--dist-orange-light));
        color: #fff;
        border-radius: 38px;
        padding: clamp(42px, 6vw, 74px);
        text-align: center;
        box-shadow: 0 26px 62px rgba(222,125,17,0.26);
        position: relative;
        overflow: hidden;
    }

    body.distributor-page .dist-final::before,

    body.distributor-page .dist-final::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: rgba(255,255,255,0.16);
    }

    body.distributor-page .dist-final::before {
        width: 190px;
        height: 190px;
        left: -70px;
        top: -70px;
    }

    body.distributor-page .dist-final::after {
        width: 260px;
        height: 260px;
        right: -110px;
        bottom: -120px;
    }

    body.distributor-page .dist-final > * {
        position: relative;
        z-index: 2;
    }

    body.distributor-page .dist-final h2 {
        color: #ffffff;
        font-size: clamp(2.2rem, 4.4vw, 3.75rem);
        line-height: 1.02;
        letter-spacing: -0.05em;
        margin-bottom: 16px;
    }

    body.distributor-page .dist-final p {
        max-width: 720px;
        margin: 0 auto 28px;
        color: rgba(255,255,255,0.92);
        line-height: 1.7;
        font-size: 1.08rem;
        text-align: center;
    }

    body.distributor-page .dist-final .dist-btn {
        background: var(--dist-dark);
        color: #fff;
    }

    body.distributor-page .dist-final .dist-btn:hover {
        background: #06121d;
    }

    body.distributor-page .dist-floating-whatsapp {
        position: fixed;
        right: 24px;
        bottom: 106px;
        z-index: 3500;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        background: #25D366;
        color: #fff;
        padding: 14px 18px;
        border-radius: 999px;
        text-decoration: none;
        font-family: 'FormaMedium', sans-serif;
        box-shadow: 0 16px 36px rgba(37,211,102,.34);
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
        transition: opacity .3s ease, transform .3s ease;
    }

    body.distributor-page .dist-floating-whatsapp.show-now {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    body.distributor-page .dist-floating-whatsapp i { color: #fff; }

    @media (max-width: 1080px) {
        body.distributor-page .dist-hero__inner,

        body.distributor-page .dist-starter-card,

        body.distributor-page .dist-split,

        body.distributor-page .dist-audience-grid {
            grid-template-columns: 1fr;
        }

        body.distributor-page .dist-hero__panel {
            justify-self: start;
        }

        body.distributor-page .dist-proof__grid,

        body.distributor-page .dist-benefits-grid,

        body.distributor-page .dist-channel-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        body.distributor-page .dist-process {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 760px) {
        body.distributor-page .dist-container {
            width: min(100% - 28px, 1180px);
        }

        body.distributor-page .dist-hero {
            min-height: auto;
            padding-top: 86px;
        }

        body.distributor-page .dist-hero::before {
            background:
                linear-gradient(180deg, rgba(252,250,247,0.98) 0%, rgba(252,250,247,0.92) 58%, rgba(252,250,247,0.75) 100%),
                url('https://i.postimg.cc/xTwcPCJ8/Chat-GPT-Image-8-jun-2026-12-16-29-p-m.png') center/cover no-repeat;
        }

        body.distributor-page .dist-hero h1 {
            font-size: clamp(2.75rem, 14vw, 4.15rem);
        }

        body.distributor-page .dist-hero__actions .dist-btn,

        body.distributor-page .dist-final .dist-btn {
            width: 100%;
        }

        body.distributor-page .dist-hero__panel {
            width: 100%;
            border-radius: 28px;
        }

        body.distributor-page .dist-proof {
            margin-top: 0;
            padding-top: 18px;
        }

        body.distributor-page .dist-proof__grid,

        body.distributor-page .dist-benefits-grid,

        body.distributor-page .dist-channel-grid,

        body.distributor-page .dist-compare-grid,

        body.distributor-page .dist-faq-grid,

        body.distributor-page .dist-process {
            grid-template-columns: 1fr;
        }

        body.distributor-page .dist-proof__item {
            border-right: none;
            border-bottom: 1px solid rgba(15,31,46,0.07);
        }

        body.distributor-page .dist-proof__item:last-child {
            border-bottom: none;
        }

        body.distributor-page .dist-starter-card,

        body.distributor-page .dist-final {
            border-radius: 28px;
            padding: 28px 22px;
        }

        body.distributor-page .dist-starter-item,

        body.distributor-page .dist-portfolio-item {
            grid-template-columns: 1fr;
        }

        body.distributor-page .dist-context-image,

        body.distributor-page .dist-context-image img,

        body.distributor-page .dist-portfolio-visual,

        body.distributor-page .dist-portfolio-visual img {
            min-height: 360px;
        }

        body.distributor-page .dist-title p {
            text-align: center;
        }

        body.distributor-page .dist-floating-whatsapp {
            right: 16px;
            bottom: 86px;
            padding: 13px 16px;
            font-size: .9rem;
        }
    }


body.distributor-page .dist-compare .dist-title h2 {
color: #ffffff !important;

}

body.distributor-page .dist-compare .dist-title p {
color: rgba(255,255,255,0.88) !important;
text-align: center !important;
}

#quizModal {
    display: none;
}

#quizModal.open {
    display: flex !important;
}

.quiz-modal-content {
    max-width: 460px !important;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-result {
    display: none;
}

.quiz-result.active {
    display: block;
}

.quiz-progress-text {
    display: inline-block;
    font-family: 'FormaMedium', sans-serif;
    color: var(--orange);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.quiz-options {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.quiz-option-btn {
    width: 100%;
    background: #ffffff;
    border: 2px solid #f0e8dd;
    padding: 16px 20px;
    border-radius: 16px;
    font-family: 'FormaMedium', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quiz-option-btn:hover {
    border-color: var(--orange);
    background: #fff8f2;
    transform: translateX(4px);
}

.quiz-result-actions {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.quiz-whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    font-family: 'FormaMedium', sans-serif;
    text-decoration: none;
}


/* ========================
   QUIZ RESULTADO - PRODUCTO
======================== */

.encuesta-premio-content .quiz-product-result {
    display: grid !important;
    grid-template-columns: 130px 1fr !important;
    gap: 18px !important;
    align-items: center !important;
    margin: 20px 0 24px !important;
    padding: 16px !important;
    border: 2px solid #f0e8dd !important;
    border-radius: 22px !important;
    background: #fffaf5 !important;
    text-align: left !important;
}

.encuesta-premio-content .quiz-product-img-wrap {
    width: 130px !important;
    height: 130px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border: 1px solid rgba(15,31,46,0.08) !important;
}

.encuesta-premio-content .quiz-product-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

.encuesta-premio-content .quiz-product-info h2 {
    margin: 0 0 8px !important;
    font-family: 'FormaMedium', sans-serif !important;
    color: var(--dark) !important;
    font-size: 1.35rem !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    text-align: left !important;
}

.encuesta-premio-content .quiz-product-info p {
    margin: 0 !important;
    color: #5f5f5f !important;
    font-size: 0.95rem !important;
    line-height: 1.45 !important;
    text-align: left !important;
}

@media (max-width: 640px) {
    .encuesta-premio-content .quiz-product-result {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .encuesta-premio-content .quiz-product-img-wrap {
        width: 150px !important;
        height: 150px !important;
        margin: 0 auto !important;
    }

    .encuesta-premio-content .quiz-product-info h2,
    .encuesta-premio-content .quiz-product-info p {
        text-align: center !important;
    }
}


.detail-price-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 24px 0 22px !important;
    flex-wrap: wrap !important;
}

.detail-price-main {
    display: inline-block !important;
    font-family: 'FormaMedium', sans-serif !important;
    font-size: 2rem !important;
    line-height: 1 !important;
    color: var(--red) !important;
    font-weight: 700 !important;
}

.detail-price-row small {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 34px !important;
    padding: 7px 14px !important;
    border-radius: 999px !important;
    background: #fff5ea !important;
    color: var(--dark) !important;
    font-family: 'FormaMedium', sans-serif !important;
    font-size: 0.9rem !important;
}

/* ==============================
   FAQ COMO CARRUSEL RESPONSIVE
============================== */

.faq-carousel-wrap {
    position: relative !important;
    width: 100% !important;
    max-width: 980px !important;
    margin: 30px auto 0 !important;
    padding: 0 70px !important;
    overflow: hidden !important;
}

#faqGrid,
.faq-carousel {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 28px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 8px 4px 18px !important;
}

#faqGrid::-webkit-scrollbar,
.faq-carousel::-webkit-scrollbar {
    display: none !important;
}

#faqGrid > *,
.faq-carousel > * {
    flex: 0 0 calc((100% - 56px) / 3) !important;
    min-width: calc((100% - 56px) / 3) !important;
    max-width: calc((100% - 56px) / 3) !important;
    height: auto !important;
    min-height: 430px !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
}

#faqGrid h3,
.faq-carousel h3 {
    font-size: 1.35rem !important;
    line-height: 1.12 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

#faqGrid p,
.faq-carousel p {
    font-size: 1rem !important;
    line-height: 1.55 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

.faq-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
}

.faq-nav.prev {
    left: 10px !important;
}

.faq-nav.next {
    right: 10px !important;
}

/* ==============================
   FAQ CARRUSEL IPAD Y CELULAR
   Igual que computadora
============================== */

/* iPad / tablets */
@media (min-width: 768px) and (max-width: 1180px) {

    .faq-section {
        padding: 70px 24px 90px !important;
        overflow: hidden !important;
    }

    .faq-carousel-wrap {
        width: 100% !important;
        max-width: 980px !important;
        margin: 30px auto 0 !important;
        padding: 0 70px !important;
        position: relative !important;
        overflow: hidden !important;
    }

    #faqGrid,
    .faq-carousel {
        width: 100% !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 28px !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 8px 4px 20px !important;
    }

    #faqGrid::-webkit-scrollbar,
    .faq-carousel::-webkit-scrollbar {
        display: none !important;
    }

    #faqGrid > *,
    .faq-carousel > * {
        flex: 0 0 300px !important;
        min-width: 300px !important;
        max-width: 300px !important;
        min-height: 430px !important;
        height: auto !important;
        padding: 34px 28px !important;
        box-sizing: border-box !important;
        scroll-snap-align: start !important;
    }

    #faqGrid h3,
    .faq-carousel h3 {
        font-size: 1.35rem !important;
        line-height: 1.12 !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    #faqGrid p,
    .faq-carousel p {
        font-size: 1rem !important;
        line-height: 1.55 !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .faq-nav {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
    }

    .faq-nav.prev {
        left: 8px !important;
    }

    .faq-nav.next {
        right: 8px !important;
    }
}


/* Celular */
@media (max-width: 767px) {

    .faq-section {
        padding: 56px 16px 80px !important;
        overflow: hidden !important;
    }

    .faq-carousel-wrap {
        width: 100% !important;
        max-width: 100% !important;
        margin: 26px auto 0 !important;
        padding: 0 54px !important;
        position: relative !important;
        overflow: hidden !important;
    }

    #faqGrid,
    .faq-carousel {
        width: 100% !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 20px !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 8px 2px 20px !important;
    }

    #faqGrid::-webkit-scrollbar,
    .faq-carousel::-webkit-scrollbar {
        display: none !important;
    }

    #faqGrid > *,
    .faq-carousel > * {
        flex: 0 0 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        min-height: 420px !important;
        height: auto !important;
        padding: 30px 24px !important;
        box-sizing: border-box !important;
        scroll-snap-align: start !important;
    }

    #faqGrid h3,
    .faq-carousel h3 {
        font-size: 1.35rem !important;
        line-height: 1.12 !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    #faqGrid p,
    .faq-carousel p {
        font-size: 0.98rem !important;
        line-height: 1.5 !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .faq-nav {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
    }

    .faq-nav.prev {
        left: 4px !important;
    }

    .faq-nav.next {
        right: 4px !important;
    }
}

/* =========================================================
   FIX RESPONSIVE - NUESTRA ESENCIA + EXPOS
   iPad y celular con apariencia tipo desktop
========================================================= */


/* =========================
   NUESTRA ESENCIA
========================= */

.about-section {
    overflow: hidden !important;
}

.about-section .sec-title {
    text-align: center !important;
}

.about-grid {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 42px auto 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px !important;
    align-items: stretch !important;
}

.about-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 430px !important;
    padding: 42px 30px !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

.about-card p {
    text-align: center !important;
    line-height: 1.55 !important;
    word-spacing: normal !important;
}


/* iPad: mantener 3 tarjetas como computadora */
@media (min-width: 768px) and (max-width: 1180px) {

    .about-section {
        padding: 70px 28px 90px !important;
    }

    .about-grid {
        max-width: 940px !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 22px !important;
    }

    .about-card {
        min-height: 410px !important;
        padding: 34px 22px !important;
        border-radius: 30px !important;
    }

    .about-card .a-img img {
        max-width: 105px !important;
        height: auto !important;
    }

    .about-card h3 {
        font-size: 1.25rem !important;
        line-height: 1.15 !important;
    }

    .about-card p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
    }
}


/* Celular: se mantiene como carrusel horizontal, no una columna enorme */
@media (max-width: 767px) {

    .about-section {
        padding: 58px 18px 80px !important;
        overflow: hidden !important;
    }

    .about-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 20px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        max-width: 100% !important;
        padding: 8px 10px 22px !important;
        margin-top: 30px !important;
    }

    .about-grid::-webkit-scrollbar {
        display: none !important;
    }

    .about-card {
        flex: 0 0 82% !important;
        min-width: 82% !important;
        max-width: 82% !important;
        min-height: 410px !important;
        padding: 34px 26px !important;
        scroll-snap-align: center !important;
    }

    .about-card .a-img img {
        max-width: 110px !important;
    }

    .about-card h3 {
        font-size: 1.35rem !important;
    }

    .about-card p {
        font-size: 1rem !important;
        line-height: 1.55 !important;
    }
}



/* =========================
   EXPOS
========================= */

.expos-section {
    overflow: hidden !important;
}

.expos-container {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr) !important;
    gap: 46px !important;
    align-items: center !important;
}

.expos-copy {
    width: 100% !important;
    max-width: 560px !important;
    margin: 0 !important;
    text-align: left !important;
}

.expos-copy h2 {
    line-height: 1.05 !important;
}

.expos-copy h3 {
    line-height: 1.55 !important;
}

.expos-visual {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
}

.expo-card {
    width: 100% !important;
    max-width: 440px !important;
    margin: 0 auto !important;
}


/* iPad: mantener layout tipo computadora */
@media (min-width: 768px) and (max-width: 1180px) {

    .expos-section {
        padding: 80px 30px 95px !important;
    }

    .expos-container {
        max-width: 980px !important;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr) !important;
        gap: 34px !important;
    }

    .expos-copy {
        max-width: none !important;
        padding: 34px 30px !important;
        border-radius: 34px !important;
    }

    .expos-copy h1,
    .expos-eyebrow {
        text-align: left !important;
    }

    .expos-copy h2 {
        font-size: clamp(2.2rem, 4.5vw, 3.5rem) !important;
        line-height: 1.02 !important;
        text-align: left !important;
    }

    .expos-copy h3 {
        font-size: 1rem !important;
        line-height: 1.55 !important;
        text-align: left !important;
    }

    .expos-list {
        gap: 12px !important;
    }

    .expo-pill {
        width: 100% !important;
        padding: 15px 18px !important;
        text-align: center !important;
    }

    .expos-visual {
        gap: 20px !important;
    }

    .expo-card {
        max-width: 360px !important;
        border-radius: 28px !important;
    }

    .expo-card img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}


/* Celular: texto arriba y fotos como carrusel horizontal */
@media (max-width: 767px) {

    .expos-section {
        padding: 62px 18px 80px !important;
    }

    .expos-container {
        display: block !important;
        max-width: 100% !important;
    }

    .expos-copy {
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 34px 24px !important;
        text-align: center !important;
        border-radius: 30px !important;
    }

    .expos-copy h1,
    .expos-eyebrow {
        text-align: center !important;
    }

    .expos-copy h2 {
        font-size: clamp(2rem, 9vw, 3rem) !important;
        line-height: 1.05 !important;
        text-align: center !important;
    }

    .expos-copy h3 {
        font-size: 0.98rem !important;
        line-height: 1.55 !important;
        text-align: center !important;
    }

    .expos-list {
        gap: 12px !important;
    }

    .expo-pill {
        width: 100% !important;
        padding: 15px 16px !important;
        text-align: center !important;
    }

    .expos-visual {
        margin-top: 30px !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 20px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 4px 8px 20px !important;
    }

    .expos-visual::-webkit-scrollbar {
        display: none !important;
    }

    .expo-card {
        flex: 0 0 86% !important;
        min-width: 86% !important;
        max-width: 86% !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
    }

    .expo-card img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}