/* ========================================
   RETAIL MASTER — styles.css
   ======================================== */

:root {
    --color-primary: #3B5B44;
    --color-accent: #3e9b55;
    --color-dark: #434244;
    --color-light: #F9FAF9;
    --color-white: #FFFFFF;
    --color-border: rgba(59, 91, 68, 0.15);
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --transition-fast: 0.3s ease;
}

/* ── Reset & Base ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}
body.loaded { overflow: auto; }

/* ── Tipografía ── */
h1, h2, h3, h4 { color: var(--color-primary); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: #555; }
a  { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Utilidades ── */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
}
.text-center { text-align: center; }
.grid        { display: grid; gap: 2rem; }

/* ── Botones ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}
.btn--primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: 1px solid var(--color-accent);
    box-shadow: 0 4px 14px rgba(62,155,85,.3);
}
.btn--primary:hover {
    background-color: #358649;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62,155,85,.4);
}
.btn--secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
.btn--secondary.on-dark { color: var(--color-white); border-color: var(--color-white); }
.btn--secondary.on-dark:hover { background-color: rgba(255,255,255,.1); box-shadow: 0 0 10px rgba(255,255,255,.2); }
.btn--secondary:not(.on-dark):hover { background-color: rgba(59,91,68,.05); box-shadow: 0 0 10px rgba(59,91,68,.1); }

/* ── Preloader ── */
.preloader {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background-color: var(--color-primary);
    z-index: 9999;
    display: flex; justify-content: center; align-items: center; flex-direction: column;
}
.preloader-content { text-align: center; overflow: hidden; }
.preloader-logo { font-size: 3rem; font-weight: 800; color: var(--color-white); letter-spacing: -1px; margin-bottom: 20px; opacity: 0; transform: translateY(20px); }
.preloader-logo img { width: 350px; }
.loading-bar-container { width: 200px; height: 2px; background: rgba(255,255,255,.1); margin: 0 auto; position: relative; overflow: hidden; border-radius: 4px; }
.loading-bar { position: absolute; top: 0; left: 0; width: 0%; height: 100%; background: var(--color-accent); }

/* ── Header ── */
.site-header {
    position: fixed; top: 0; left: 0;
    width: 100%; height: var(--header-height);
    background: rgba(249,250,249,.90);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex; align-items: center;
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: transform 0.3s ease;
}
.site-header.is-hidden { transform: translateY(-110%); }
.site-header__inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--color-primary); letter-spacing: -0.5px; z-index: 102; position: relative; }
.logo img { width: 200px; }

/* ── Nav Desktop ── */
.nav-desktop { display: none; }
@media (min-width: 992px) {
    .nav-desktop { display: flex; gap: 2rem; margin-right: 2rem; }
    .nav-desktop a { font-size: .9rem; font-weight: 500; color: var(--color-dark); position: relative; }
    .nav-desktop a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0%; height: 2px; background-color: var(--color-accent); transition: width 0.3s ease; }
    .nav-desktop a:hover::after { width: 100%; }
}

/* ── Hamburger ── */
.hamburger { width: 40px; height: 40px; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; cursor: pointer; z-index: 102; background: none; border: none; padding: 0; }
.hamburger span { display: block; height: 2px; background-color: var(--color-primary); margin: 3px 0; transition: all 0.4s cubic-bezier(.68,-.55,.265,1.55); }
.hamburger span:nth-child(1) { width: 30px; }
.hamburger span:nth-child(2) { width: 24px; }
.hamburger span:nth-child(3) { width: 18px; }
.hamburger:hover span { width: 30px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); width: 30px; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); width: 30px; }

/* ── Menu Overlay ── */
.menu-overlay {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: var(--color-primary);
    z-index: 101;
    display: flex; align-items: center; justify-content: center;
    clip-path: circle(0% at 100% 0%);
    pointer-events: none;
    overflow-y: auto;
}
.menu-overlay.open { pointer-events: all; }
.menu-container-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; width: 100%; max-width: 1100px; padding: 6rem 2rem 4rem 2rem; text-align: center; }
@media (min-width: 992px) {
    .menu-container-grid { grid-template-columns: 0.8fr 1.2fr; text-align: left; align-items: start; }
}
.menu-nav-main { display: flex; flex-direction: column; gap: 1rem; }
.menu-link { display: block; font-size: clamp(2rem,4vw,3rem); color: var(--color-white); font-weight: 700; text-decoration: none; opacity: 0; transform: translateY(20px); line-height: 1.1; transition: color 0.3s; }
.menu-link:hover { color: var(--color-accent); -webkit-text-stroke: 1px #fff; }
.menu-contact-mini { margin-top: 2rem; opacity: 0; transform: translateY(20px); }
.menu-contact-mini p { color: rgba(255,255,255,.6); margin: 0; font-size: .9rem; }
.menu-visual-col { display: flex; flex-direction: column; gap: 1.5rem; }
.menu-section-title { font-size: .85rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.5); border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: .5rem; margin-bottom: 1rem; opacity: 0; transform: translateY(20px); }
.menu-products-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 1rem; }
.menu-product-card { display: block; background: rgba(255,255,255,.05); border-radius: 8px; overflow: hidden; text-decoration: none; transition: transform 0.3s, background 0.3s; opacity: 0; transform: translateY(20px); }
.menu-product-card:hover { background: rgba(255,255,255,.1); transform: translateY(-5px); }
.mp-img { height: 100px; width: 100%; overflow: hidden; }
.mp-img img { width: 100%; height: 100%; object-fit: cover; }
.mp-info { padding: .8rem; text-align: left; }
.mp-info span { display: block; color: white; font-weight: 600; font-size: .9rem; line-height: 1.2; }
.mp-info small { display: block; color: var(--color-accent); font-size: .7rem; margin-top: 4px; text-transform: uppercase; }
.menu-close-label { position: absolute; top: 28px; right: 80px; color: white; font-weight: 700; font-size: .9rem; letter-spacing: 2px; z-index: 105; opacity: 0; pointer-events: none; transition: opacity 0.3s ease 0.5s; cursor: pointer; }
.menu-overlay.open .menu-close-label { opacity: 1; pointer-events: all; }

/* ── Hero ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: var(--header-height); }
.hero-video-wrapper { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 85%; height: 80vh; border-radius: 20px; overflow: hidden; z-index: 0; box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.hero-video-wrapper::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.4); z-index: 1; }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; text-align: center; max-width: 900px; }
.hero-content h1 { color: white; margin-bottom: 1.5rem; text-shadow: 0 2px 10px rgba(0,0,0,.2); }
.hero-content h1 span { color: var(--color-accent); display: inline-block; }
.hero-content p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.font-size-40 { font-size: 40px; padding: 50px 20px 0; }
@media (max-width: 768px) {
    .hero-video-wrapper { width: 100%; border-radius: 0 !important; height: 100%; }
    .font-size-40 { font-size: 20px; }
}

/* ── Info Retail Master (Reading Effect) ── */
#info-retail-master .irm-word { opacity: 0.15; display: inline-block; will-change: opacity; }
.irm-word.color-accent { color: var(--color-accent); }

/* ── Section base ── */
.section { padding: 5rem 0; }

/* ── MVV ── */
.mvv { background: #fff; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.mvv-intro { max-width: 900px; margin: 0 auto 2.5rem; }
.mvv-intro h2 { margin-bottom: .8rem; }
.mvv-intro p  { margin-bottom: .8rem; }
.mvv-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
@media (min-width: 992px) { .mvv-grid { grid-template-columns: repeat(3,1fr); gap: 1.75rem; } }
.mvv-card { background: var(--color-light); border: 1px solid var(--color-border); border-radius: 16px; padding: 2rem; transition: transform .3s, box-shadow .3s, border-color .3s; }
.mvv-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.06); border-color: rgba(62,155,85,.35); }
.mvv-icon { width: 54px; height: 54px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: rgba(62,155,85,.12); margin-bottom: 1rem; }
.mvv-icon svg { width: 26px; height: 26px; stroke: var(--color-accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mvv-card h3 { margin-bottom: .7rem; color: var(--color-primary); }
.mvv-card p   { margin: 0; }
.values-list  { margin-top: .8rem; display: grid; gap: .8rem; }
.value-row    { display: flex; align-items: flex-start; gap: .7rem; }
.value-row svg   { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 3px; stroke: var(--color-accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-row span  { color: #555; font-weight: 600; }
.value-row small { display: block; color: #666; font-weight: 400; margin-top: 2px; }

/* ── Sectors ── */
.sectors-grid { grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.sector-card  { background: white; padding: 2rem; border: 1px solid var(--color-border); border-radius: var(--radius-md); text-align: center; transition: all .3s; cursor: default; }
.sector-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.05); border-color: var(--color-accent); }
.sector-icon  { font-size: 2.5rem; margin-bottom: 1rem; color: var(--color-accent); display: inline-block; }

/* ── Stacking Promo Cards ── */
.stacking-section { padding-bottom: 0; width: 100%; }
.stacking-header   { max-width: var(--container-width); margin: 0 auto; padding: 3rem 24px 2rem 24px; }
.stack-card { position: -webkit-sticky; position: sticky; top: 0; height: 100vh; width: 100%; border-radius: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; box-shadow: 0 -10px 30px rgba(0,0,0,.2); color: white; text-align: center; }
.stack-bg      { position: absolute; top: 0; left: 0; width: 100%; height: 120%; object-fit: cover; z-index: 1; }
.stack-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.4); z-index: 2; transition: background .3s; }
.stack-card:hover .stack-overlay { background: rgba(0,0,0,.7); }
.stack-content { position: relative; z-index: 3; padding: 2rem; max-width: 900px; opacity: 0; transform: translateY(50px); }
.stack-content h3 { color: white; font-size: clamp(2.5rem,6vw,4.5rem); margin-bottom: 1.5rem; text-transform: uppercase; text-shadow: 0 4px 20px rgba(0,0,0,.3); }
.stack-content p  { color: rgba(255,255,255,.95); font-size: clamp(1.1rem,2vw,1.4rem); margin-bottom: 2.5rem; text-shadow: 0 2px 10px rgba(0,0,0,.3); }

/* ── Value Prop ── */
.value-prop { background-color: var(--color-primary); color: white; position: relative; overflow: hidden; }
.value-prop h2 { color: white; }
.value-prop p  { color: rgba(255,255,255,.8); }
.value-grid    { grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); margin-top: 3rem; }
.value-item    { border-left: 2px solid var(--color-accent); padding-left: 1.5rem; }
.value-item h4 { color: var(--color-accent); margin-bottom: .5rem; font-size: 1.2rem; }

/* ── Best Sellers ── */
.bestsellers-section { position: relative; width: 100%; height: 100vh; overflow: hidden; background-color: #1a1a1a; display: flex; flex-direction: column; isolation: isolate; }
.bs-title { position: absolute; top: 2rem; left: 3rem; color: white; font-size: clamp(1.2rem,2.5vw,2rem); font-weight: 700; letter-spacing: 5px; text-transform: uppercase; z-index: 30; pointer-events: none; mix-blend-mode: normal; will-change: transform; }
.bs-arrows { position: absolute; top: 50%; transform: translateY(-50%); left: 0; width: 100%; display: flex; justify-content: space-between; padding: 0 1.5rem; z-index: 30; pointer-events: none; box-sizing: border-box; }
.bs-arrow { background: none; border: none; color: rgba(255,255,255,.75); cursor: pointer; pointer-events: all; padding: .5rem; display: flex; align-items: center; justify-content: center; transition: color .3s, transform .3s; }
.bs-arrow:hover { color: #fff; transform: scale(1.15); }
.bs-arrow svg { width: 52px; height: 52px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.horizontal-container { display: flex; flex-wrap: nowrap; width: 600%; height: 100%; transition: transform 0.9s cubic-bezier(.77,0,.175,1); position: relative; z-index: 1; }
.bs-panel { width: 100vw; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; padding: 6rem 5rem 4rem; color: white; box-sizing: border-box; object-fit: cover;}
.bs-panel-1 { background: linear-gradient(135deg,#111 0%,#1e2a20 100%); }
.bs-panel-2 { background: linear-gradient(135deg,#111 0%,#1c1f2e 100%); }
.bs-panel-3 { background: linear-gradient(135deg,#111 0%,#2a1f1c 100%); }
.bs-panel-4 { background: linear-gradient(135deg,#111 0%,#1f1f2a 100%); }
.bs-bg-text  { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 15vw; font-weight: 900; color: rgba(255,255,255,.03); white-space: nowrap; pointer-events: none; z-index: 0; }
.bs-number   { position: absolute; bottom: 2rem; left: 3rem; font-size: clamp(6rem,12vw,12rem); font-weight: 900; line-height: 1; color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.12); z-index: 0; pointer-events: none; }
.bs-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1100px; width: 100%; z-index: 1; align-items: center; }
/*.bs-image-box { height: 400px; background: rgba(255,255,255,.05); border-radius: 20px; border: 1px solid rgba(255,255,255,.1); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.3); position: relative;}*/
.bs-image-box {
    width: 100%;
    background: rgba(255,255,255,.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.1);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
    position: relative;
    /* Eliminamos height fijo para que se adapte a la imagen */
    display: flex;
    align-items: center;
    justify-content: center;
}
.bs-image-box img { width: 100%; height: auto; display: block; object-fit: cover; object-position: center center; transition: transform .5s; }
.bs-image-box:hover img { transform: scale(1.05); }
.bs-info h4 { color: #3e9b55; text-transform: uppercase; letter-spacing: 2px; font-size: .85rem; margin-bottom: .8rem; font-weight: 600; }
.bs-info h3 { font-size: clamp(1.8rem,3vw,3rem); color: white; line-height: 1; margin-bottom: 1rem; }
.bs-info p  { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 400px; line-height: 1.6; }
.bs-dots    { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 30; }
.bs-dot     { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.25); transition: background .3s, transform .3s; cursor: pointer; }
.bs-dot.active { background: #3e9b55; transform: scale(1.5); }
@media (max-width: 768px) {
    .bs-content-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .bs-panel { padding: 5rem 2rem 3rem; }
    .bs-arrow svg { width: 38px; height: 38px; }
    .bs-title { left: 1.5rem; font-size: 1rem; }
    .bs-arrows { padding: 0 .5rem; }
    .bestsellers-section { height: 100vh; }
    .bs-image-box { height: 220px; }
}

/* ── Catalog ── */
.catalog-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); margin-bottom: 3rem; }
@media (min-width: 992px) { .catalog-grid { grid-template-columns: repeat(3,1fr); } }
.product-card { background: transparent; border: none; border-radius: 0; box-shadow: none; overflow: visible; cursor: pointer; transition: transform .4s; opacity: 0; }
.product-card:hover { transform: translateY(-8px); }
.card-image-container { width: 100%; aspect-ratio: 1/1.1; overflow: hidden; border-radius: var(--radius-md); background: #f0f0f0; position: relative; margin-bottom: 1.2rem; box-shadow: 0 5px 20px rgba(0,0,0,.05); transition: box-shadow .3s; }
.product-card:hover .card-image-container { box-shadow: 0 15px 30px rgba(0,0,0,.1); }
.card-image-container img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.25,.46,.45,.94), opacity .4s; will-change: transform, opacity; }
.img-main { opacity: 1; }
.img-hover { position: absolute; top: 0; left: 0; opacity: 0; z-index: 1; }
.product-card:hover .img-hover { opacity: 1; transform: scale(1.08); }
.product-card:hover .img-main  { transform: scale(1.08); }
.card-tag { position: absolute; top: 15px; left: 15px; background: rgba(255,255,255,.95); color: var(--color-dark); font-size: .65rem; padding: 6px 12px; border-radius: 50px; font-weight: 700; z-index: 2; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 2px 10px rgba(0,0,0,.1); }
.card-info  { text-align: left; padding-left: .5rem; }
.card-cat   { font-size: .7rem; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: .4rem; display: block; font-weight: 500; }
.card-title { font-size: 1.2rem; font-weight: 700; color: var(--color-dark); margin: 0; line-height: 1.3; }

/* ── Logo Marquee ── */
/* ── Logo Marquee - CARRUSEL ANIMADO QUE MUESTRA TODOS LOS LOGOS ── */
.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    background: transparent;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 70s linear infinite;
}

/*.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}*/

.client-logo-img {
    height: 70px;
    width: auto;
    min-width: 100px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(0.3) opacity(0.7);
    transition: all 0.5s ease;
    margin: 0 1.5rem;
    flex-shrink: 0;
}

.client-logo-img:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .client-logo-img {
        height: 50px;
        min-width: 80px;
        margin: 0 1rem;
    }
    
    .logo-track {
        animation: scrollLogos 40s linear infinite;
    }
}

@media (max-width: 480px) {
    .client-logo-img {
        height: 40px;
        min-width: 70px;
        margin: 0 0.75rem;
    }
    
    .logo-track {
        animation: scrollLogos 35s linear infinite;
    }
}
/* ── Testimonials ── */
.testimonials-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 2rem; padding-bottom: 2rem; -ms-overflow-style: none; scrollbar-width: none; margin-top: 2rem; }
.testimonials-slider::-webkit-scrollbar { display: none; }
.testimonial-card { flex: 0 0 calc(50% - 1rem); scroll-snap-align: start; background: white; padding: 2.5rem; border-radius: var(--radius-md); box-shadow: 0 10px 30px rgba(0,0,0,.05); border: 1px solid var(--color-border); position: relative; display: flex; flex-direction: column; justify-content: space-between; }
@media (max-width: 768px) { .testimonial-card { flex: 0 0 85%; } }
.testimonial-text { font-size: 1.1rem; font-style: italic; color: #555; margin-bottom: 1.5rem; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: #eee; object-fit: cover; }
.author-info h5   { margin: 0; font-size: .95rem; color: var(--color-primary); font-weight: 700; }
.author-info span { font-size: .8rem; color: #888; }

/* ── CTA Band ── */
.cta-band { background: linear-gradient(135deg,#1A2E22 0%,#2C4A36 100%); color: white; padding: 5rem 0; margin-top: 5rem; position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.15); }
.cta-band::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle,rgba(62,155,85,.15) 0%,transparent 70%); pointer-events: none; }
.cta-band .container { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2rem; position: relative; z-index: 2; }
.cta-text h3 { color: white; font-size: clamp(2rem,5vw,3rem); margin-bottom: .5rem; font-weight: 800; letter-spacing: -1px; }
.cta-text p  { color: rgba(255,255,255,.9); font-size: 1.2rem; margin: 0; max-width: 600px; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 12px; background-color: #25D366; color: white; padding: 18px 40px; border-radius: 50px; font-weight: 700; font-size: 1.1rem; text-decoration: none; transition: all .3s cubic-bezier(.175,.885,.32,1.275); box-shadow: 0 10px 30px rgba(37,211,102,.3); border: 2px solid #25D366; }
.btn-whatsapp:hover { background-color: white; color: #25D366; transform: translateY(-5px) scale(1.05); box-shadow: 0 20px 40px rgba(37,211,102,.4); }
@media (min-width: 768px) { .cta-band .container { flex-direction: row; justify-content: space-between; text-align: left; } .cta-text { text-align: left; } }

/* ── Contact Form ── */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 600px; margin: 0 auto; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-full { grid-column: span 2; } }
input, select, textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: var(--radius-sm); font-family: inherit; background: white; transition: .3s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 2px rgba(59,91,68,.1); }
textarea { resize: vertical; min-height: 120px; }

/* ── Footer ── */
footer { background: var(--color-light); border-top: 1px solid #eee; padding: 3rem 0; margin-top: 3rem; font-size: .9rem; }
.footer-content { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .footer-content { flex-direction: row; justify-content: space-between; } }
.social-links   { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a { color: var(--color-primary); font-weight: 600; }

/* ── Reveal util ── */
.reveal-up { opacity: 0; }

/* ── WhatsApp Float ── */
.wa-float { position: fixed; right: 22px; bottom: 22px; width: 64px; height: 64px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(0,0,0,.25); z-index: 200; cursor: pointer; transition: transform .25s, box-shadow .25s; }
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
.wa-badge { position: absolute; top: -2px; right: -2px; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: #ff3b30; color: white; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,.25); animation: waPulse 1.8s infinite; }
@keyframes waPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }

/* ── Cookie Banner ── */
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; background: #1f2e25; color: white; border-radius: 14px; padding: 18px 20px; box-shadow: 0 20px 50px rgba(0,0,0,.35); z-index: 300; display: none; }
.cookie-banner.show { display: block; }
.cookie-inner { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 768px) { .cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.cookie-text    { font-size: .9rem; color: rgba(255,255,255,.9); max-width: 720px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie         { padding: 10px 16px; border-radius: 999px; font-size: .8rem; font-weight: 700; cursor: pointer; border: 1px solid transparent; }
.btn-cookie-accept  { background: #25D366; color: white; }
.btn-cookie-decline { background: transparent; color: white; border-color: rgba(255,255,255,.4); }

/* ── Nosotros Section ── */
.nosotros-section { background: var(--color-white); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.nosotros-label   { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1rem; }
.nosotros-intro   { max-width: 780px; margin-bottom: 3.5rem; }
.nosotros-intro h2 { margin-bottom: 1.2rem; }
.nosotros-lead    { font-size: 1.05rem; color: #555; line-height: 1.75; margin: 0; }
.nosotros-grid    { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 992px) { .nosotros-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; } }
.nosotros-col-title { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--color-primary); margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 1px solid var(--color-border); }
.diferenciadores-list { display: flex; flex-direction: column; gap: 1rem; list-style: none; padding: 0; margin: 0; }
.diferenciadores-list li { display: flex; align-items: flex-start; gap: .85rem; font-size: .98rem; color: #444; font-weight: 500; line-height: 1.5; }
.dif-icon { flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; }
.dif-icon svg { width: 100%; height: 100%; stroke: var(--color-accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nosotros-callout { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; padding: 1.25rem 1.5rem; background: rgba(62,155,85,.07); border-left: 3px solid var(--color-accent); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.callout-icon     { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.nosotros-callout p      { margin: 0; font-size: 1rem; color: var(--color-primary); line-height: 1.5; }
.nosotros-callout strong { font-weight: 700; color: var(--color-accent); }
.porq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 480px) { .porq-grid { grid-template-columns: 1fr; } }
.porq-card { position: relative; background: var(--color-light); border: 1px solid var(--color-border); border-radius: 16px; padding: 1.5rem; overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; }
.porq-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,.07); border-color: rgba(62,155,85,.4); }
.porq-num  { position: absolute; top: -10px; right: 12px; font-size: 4rem; font-weight: 900; color: rgba(59,91,68,.06); line-height: 1; pointer-events: none; user-select: none; }
.porq-icon { width: 44px; height: 44px; background: rgba(62,155,85,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.porq-icon svg { width: 22px; height: 22px; stroke: var(--color-accent); }
.porq-card h4 { font-size: .95rem; font-weight: 700; color: var(--color-primary); margin-bottom: .35rem; }
.porq-card p  { font-size: .82rem; color: #777; margin: 0; line-height: 1.4; }

/* Protección anti-copia */
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Los usuarios pueden seleccionar texto normalmente */
body {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}

/* Los inputs y textarea ya tienen selección por defecto */
input, textarea, select, [contenteditable="true"] {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}
