/* ===================================
   RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#F8FAFF;
    color:#1E293B;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ===================================
   VARIABLES
=================================== */

:root{

    --primary:#005BBB;
    --primary-dark:#004899;

    --secondary:#002E63;

    --accent:#FF0000;

    --white:#FFFFFF;

    --text:#1E293B;

    --gray:#64748B;

    --light:#F8FAFF;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:20px;
}

/* ===================================
   BOTONES
=================================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 28px;
    border-radius:14px;
    font-weight:600;
    transition:.35s;
}

.btn:hover{
    transform:translateY(-3px);
}

.btn-primary{

    background:var(--primary);
    color:white;

}

.btn-primary:hover{

    background:var(--primary-dark);

}

.btn-outline-light{

    border:2px solid rgba(255,255,255,.6);
    color:white;

}

.btn-outline-light:hover{

    background:white;
    color:var(--primary);

}

.btn-outline-blue{

    border:2px solid var(--primary);
    color:var(--primary);

}

.btn-outline-blue:hover{

    background:var(--primary);
    color:white;

}

.btn-light{

    background:white;
    color:var(--primary);
    font-weight:700;

}

/* ===================================
   HEADER
=================================== */

.header{

    background:white;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 15px rgba(0,0,0,.05);

}

.navbar{

    display:flex;
    align-items:center;
    justify-content:space-between;
    height:90px;

}

.logo{

    display:flex;
    align-items:center;
    gap:12px;

}

.logo img{
    height:58px;
    width:auto;
    display:block;
}

@media(max-width:768px){

    .logo img{
        height:45px;
    }

}

.logo-mark{

    width:55px;
    height:55px;

    border:3px solid var(--primary);

    color:var(--primary);

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;
    font-weight:800;

}

.logo-text{

    display:flex;
    flex-direction:column;

    color:var(--secondary);

    font-weight:800;

}

.logo-text small{

    font-size:.7rem;
    font-weight:600;
    color:var(--gray);

}

.nav-menu{

    display:flex;
    gap:35px;

}

.nav-menu a{

    color:#334155;
    font-weight:500;
    transition:.3s;

}

.nav-menu a:hover,
.nav-menu .active{

    color:var(--primary);

}

/* ===================================
   HERO
=================================== */

.hero{
    position:relative;
    min-height:460px;
    padding:0;
    background:url('../img/hero-textil.webp');
    background-size:cover;
    background-position:center right;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        105deg,
        rgba(5,26,87,.96) 0%,
        rgba(5,26,87,.88) 38%,
        rgba(5,26,87,.38) 58%,
        rgba(5,26,87,.08) 100%
    );
}

.hero-container{
    position:relative;
    z-index:2;
    min-height:460px;
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:560px;
    color:white;
}

.hero-content h1{

    font-size:4.3rem;
    line-height:1.1;
    margin-bottom:25px;

}

.hero-content p{

    font-size:1.2rem;
    margin-bottom:35px;

    color:rgba(255,255,255,.85);

}

.hero-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;

}

/* ===================================
   HERO FEATURES
=================================== */

.hero-features{

    display:flex;
    flex-wrap:wrap;
    gap:35px;

    margin-top:50px;

}

.hero-feature{

    display:flex;
    align-items:center;
    gap:12px;

    transition:.35s;

    cursor:pointer;

}

.hero-feature:hover{

    transform:translateY(-5px);

}

.hero-feature i{

    font-size:28px;
    color:white;

}

.hero-feature span{

    font-size:.95rem;
    color:white;

}

/* ===================================
   ANIMACIONES
=================================== */

@keyframes pulseBlue{

    0%{
        box-shadow:0 0 0 0 rgba(13,91,255,.4);
    }

    70%{
        box-shadow:0 0 0 15px rgba(13,91,255,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(13,91,255,0);
    }

}

/* ===================================
   AUDIENCE SECTION
=================================== */

.audience-section{

    background:white;
    padding:70px 0;

}

.audience-section h2{

    text-align:center;
    color:var(--secondary);

    font-size:2.2rem;

    margin-bottom:50px;

}

.audience-grid{

    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;

}

.audience-card{

    text-align:center;

    padding:25px 15px;

    transition:.35s;

    cursor:pointer;

}

.audience-card:hover{

    transform:translateY(-8px);

}

.icon-circle{

    width:90px;
    height:90px;

    margin:auto;
    margin-bottom:20px;

    border-radius:50%;

    background:#EEF4FF;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.35s;

}

.icon-circle i{

    font-size:34px;
    color:var(--primary);

    transition:.35s;

}

.audience-card:hover .icon-circle{

    background:var(--primary);

    animation:pulseBlue 1.5s infinite;

}

.audience-card:hover .icon-circle i{

    color:white;
    transform:scale(1.15);

}

.audience-card h3{

    color:var(--secondary);
    font-size:1rem;

}

/* ===================================
   PRODUCTS
=================================== */

.products-section{

    padding:80px 0;

}

.products-section h2{

    text-align:center;

    font-size:3rem;

    font-weight:800;

    color:var(--secondary);

    margin-bottom:60px;

    position:relative;
}

.products-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}

.product-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.4s;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.product-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.12);

}

.product-card img{
    width:100%;
    height:240px;
    object-fit:contain;
    padding:18px;
    background:#fff;
    transition:.5s;
}

.product-card:hover img{

    transform:scale(1.06);

}

.product-info{

    padding:20px;

    text-align:center;

}

.product-info h3{

    color:var(--secondary);

    margin-bottom:10px;

    min-height:55px;

}

.product-info p{

    color:var(--gray);
    font-size:.92rem;

}

.center-button{

    text-align:center;
    margin-top:40px;

}

/* ===================================
   PRODUCT ICON EFFECT
=================================== */

.product-card:hover h3{

    color:var(--primary);

}

.inicio-section h2,
.stats-section h2,
.audience-section h2,
.services-section h2,
.products-section h2,
.process-section h2,
.clients-section h2{

    text-align:center;

    font-size:3rem;

    font-weight:600;

    color:var(--secondary);

    margin-bottom:60px;

    line-height:1.2;
}



/* ===================================
   PROCESS
=================================== */

.process-section{

    padding:80px 0;

}

.process-section h2{

    text-align:center;

    color:var(--secondary);

    margin-bottom:50px;

    font-size:2.2rem;

}

.process-grid{

    background:white;

    padding:50px;

    border-radius:25px;

    box-shadow:var(--shadow);

    display:grid;

    grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr;

    gap:20px;

    align-items:center;

}

.process-step{

    text-align:center;

    position:relative;

}

.number{

    position:absolute;

    top:-10px;
    left:50%;

    transform:
    translateX(-50%);

    width:35px;
    height:35px;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;

}

.process-icon{

    width:95px;
    height:95px;

    margin:auto;
    margin-bottom:20px;

    border-radius:50%;

    background:#EEF4FF;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.35s;

}

.process-icon i{

    font-size:36px;
    color:var(--primary);

    transition:.35s;

}

.process-step:hover .process-icon{

    background:var(--primary);

    animation:pulseBlue 1.5s infinite;

    transform:translateY(-8px);

}

.process-step:hover .process-icon i{

    color:white;
    transform:scale(1.15);

}

.process-step h3{

    color:var(--secondary);

    margin-bottom:10px;

}

.process-step p{

    color:var(--gray);
    font-size:.92rem;

}

.process-arrow{

    font-size:30px;

    color:var(--primary);

}
/* ===================================
   WHY SECTION
=================================== */

.why-section{
    padding:80px 0;
    background:#FFFFFF;
}

.why-container{
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:40px;
    align-items:center;
}

.why-content h2{
    color:var(--secondary);
    font-size:2.3rem;
    margin-bottom:30px;
}

.why-content ul li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    color:#334155;
}

.why-content ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:22px;
    height:22px;
    border-radius:50%;
    background:var(--accent);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.75rem;
    font-weight:700;
    box-shadow:0 0 10px rgba(255,0,0,.25);
}

.why-images{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.why-images img{
    height:260px;
    width:100%;
    object-fit:cover;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.4s;
}

.why-images img:hover{
    transform:translateY(-8px) scale(1.02);
}

/* ===================================
   CLIENTS
=================================== */

.clients-section{
    padding:70px 0;
}

.clients-section h2{
    text-align:center;
    color:var(--secondary);
    font-size:2.1rem;
    margin-bottom:45px;
}

.clients-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
    align-items:center;
}

.client-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:#7A8599;
    font-weight:800;
    text-align:left;
    transition:.35s;
    cursor:pointer;
}

.client-logo i{
    font-size:38px;
    color:#9AA4B5;
    transition:.35s;
}

.client-logo:hover{
    color:var(--primary);
    transform:translateY(-6px);
}

.client-logo:hover i{
    color:var(--primary);
    transform:scale(1.15) rotate(-5deg);
}

/* ===================================
   CTA SECTION
=================================== */

.cta-section{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    padding:45px 0;
}

.cta-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    color:white;
}

.cta-container h2{
    font-size:2.2rem;
    margin-bottom:8px;
}

.cta-container p{
    color:rgba(255,255,255,.85);
}

/* ===================================
   FOOTER
=================================== */

.footer{
    background:#FFFFFF;
    padding-top:70px;
}

.footer-container{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr 1.2fr;
    gap:40px;
}

.footer .logo{
    margin-bottom:20px;
}

.footer-brand p{
    color:var(--gray);
    margin-bottom:25px;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--primary);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.social-icons a:hover{
    background:var(--primary-dark);
    transform:translateY(-5px) scale(1.08);
}

.footer-col h3{
    color:var(--secondary);
    margin-bottom:20px;
    font-size:1.1rem;
}

.footer-col a,
.footer-col p{
    display:block;
    color:var(--gray);
    margin-bottom:12px;
    font-size:.95rem;
}

.footer-col a:hover{
    color:var(--primary);
}

.footer-col p i{
    color:var(--primary);
    margin-right:8px;
}

.footer-bottom{
    margin-top:50px;
    padding:25px 0;
    border-top:1px solid #E2E8F0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    color:var(--gray);
    font-size:.9rem;
}

.footer-bottom a{
    color:var(--gray);
    margin-left:20px;
}

.footer-bottom a:hover{
    color:var(--primary);
}

/* =====================================
   SERVICIOS
===================================== */

.services-section{
    padding:80px 0 40px;
}

.section-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:30px;

    background:rgba(54,125,255,.10);

    color:var(--primary);

    font-size:.85rem;

    font-weight:700;

    margin-bottom:20px;
}

.services-section h2{

    text-align:center;

    margin-bottom:15px;
}

.section-description{

    max-width:700px;

    margin:0 auto 60px;

    text-align:center;

    color:var(--gray);
}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    border:1px solid #EAEAEA;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.04);
}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 20px 40px rgba(54,125,255,.15);
}

.service-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(54,125,255,.10);
}

.service-icon i{

    font-size:32px;

    color:var(--primary);
}

.service-card h3{

    margin-bottom:15px;

    color:var(--secondary);
}

.service-card p{

    color:var(--gray);

    line-height:1.7;
}

/****** ===========================================

/* ===================================
   RESPONSIVE
=================================== */

/* ===================================
   TABLET
=================================== */

@media(max-width:1200px){

    .nav-menu{
        display:none;
    }

    .hero{
        min-height:500px;
    }

    .hero-content h1{
        font-size:3.5rem;
    }

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .audience-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .clients-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .process-grid{
        grid-template-columns:1fr;
    }

    .process-arrow{
        transform:rotate(90deg);
        text-align:center;
    }

    .why-container{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ===================================
   CELULAR
=================================== */

@media(max-width:768px){

    .container{
        width:92%;
    }

    /* HEADER */

    .navbar{
        flex-direction:column;
        gap:20px;
        height:auto;
        padding:15px 0;
    }

    .logo img{
        height:50px;
    }

    .header .btn{
        width:100%;
    }

    /* HERO */

    .hero{
        min-height:auto;
        padding:60px 0;
        background-position:center;
    }

    .hero-overlay{
        background:rgba(5,26,87,.88);
    }

    .hero-container{
        min-height:auto;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content h1{
        font-size:2.5rem;
        line-height:1.15;
        margin-bottom:20px;
    }

    .hero-content p{
        font-size:1rem;
        margin-bottom:25px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }

    .btn{
        width:100%;
    }

    .hero-features{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
        margin-top:35px;
    }

    .hero-feature{
        justify-content:center;
        text-align:center;
    }

    /* AUDIENCE */

    .audience-grid{
        grid-template-columns:1fr;
    }

    /* PRODUCTOS */

    .products-grid{
        grid-template-columns:1fr;
    }

    .product-card img{
        height:260px;
    }

    /* PROCESO */

    .process-grid{
        padding:30px 20px;
    }

    .process-step{
        margin-bottom:20px;
    }

    /* WHY */

    .why-images{
        grid-template-columns:1fr;
    }

    .why-images img{
        height:250px;
    }

    /* CLIENTES */

    .clients-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    /* CTA */

    .cta-container{
        flex-direction:column;
        text-align:center;
    }

    .cta-container h2{
        font-size:1.8rem;
    }

    .cta-container .btn{
        width:100%;
    }

    /* FOOTER */

    .footer-container{
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}

/* ===================================
   CELULARES PEQUEÑOS
=================================== */

@media(max-width:480px){

    .hero-content h1{
        font-size:2rem;
    }

    .hero-content p{
        font-size:.95rem;
    }

    .hero-features{
        grid-template-columns:1fr;
    }

    .audience-section h2,
    .products-section h2,
    .process-section h2,
    .why-content h2,
    .clients-section h2,
    .cta-container h2{
        font-size:1.6rem;
    }

    .process-icon{
        width:80px;
        height:80px;
    }

    .process-icon i{
        font-size:30px;
    }

    .whatsapp-float{
        width:60px;
        height:60px;
        font-size:28px;
    }

}

@media(max-width:992px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .services-grid{
        grid-template-columns:1fr;
    }

}

/* ===================================
   BOTÓN FLOTANTE WHATSAPP
=================================== */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    z-index:9999;
    box-shadow:0 15px 35px rgba(37,211,102,.45);
    animation:whatsappPulse 2s infinite;
    transition:.35s;
}

.whatsapp-float:hover{
    transform:scale(1.12) translateY(-5px);
    background:#128C7E;
}

@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.55);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

/* ===================================
   ANIMACIONES AL HACER SCROLL
=================================== */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.reveal-left{
    opacity:0;
    transform:translateX(-50px);
    transition:1s ease;
}

.reveal-right{
    opacity:0;
    transform:translateX(50px);
    transition:1s ease;
}

.reveal-left.active,
.reveal-right.active{
    opacity:1;
    transform:translateX(0);
}

/* ===================================
   CONTADORES
=================================== */

.counter-box{
    text-align:center;
}

.counter-box h3{
    font-size:2.4rem;
    font-weight:800;
}

.counter-box p{
    opacity:.85;
}

/* =========================
   STATS CONTROL CERO
========================= */

.stats-section{
    padding:70px 0 30px;
    background:#F8FAFF;
}

.stats-section h2{
    text-align:center;
    color:var(--secondary);
    font-size:2.2rem;
    margin-bottom:35px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.counter-box{
    background:white;
    border-radius:25px;
    padding:35px 25px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;
    border:1px solid rgba(13,110,253,.08);
}

.counter-box:hover{
    transform:translateY(-8px);
    border-color:rgba(13,110,253,.35);
    box-shadow:0 20px 45px rgba(13,110,253,.14);
}

.counter-box h3{
    color:var(--primary);
    font-size:3rem;
    line-height:1;
    margin-bottom:12px;
    font-weight:800;
}

.counter-box p{
    color:#64748B;
    font-size:.95rem;
}

@media(max-width:768px){

    .product-card img{
        height:240px;
        object-fit:contain;
        padding:18px;
        background:#fff;
    }

}

.stats-section .counter-box{
    opacity:1 !important;
    transform:none !important;
}

@media(max-width:768px){

    .stats-section h2,
    .audience-section h2,
    .services-section h2,
    .products-section h2,
    .process-section h2,
    .clients-section h2{

        font-size:2rem;
        margin-bottom:35px;
    }

}

/* ===================================
   TÍTULOS UNIFICADOS
=================================== */

.stats-section h2,
.audience-section h2,
.services-section h2,
.products-section h2,
.process-section h2,
.clients-section h2{
    text-align:center;
    color:var(--secondary);
    font-size:2.4rem;
    font-weight:800;
    line-height:1.2;
    margin-bottom:45px;
}

@media(max-width:768px){
    .stats-section h2,
    .audience-section h2,
    .services-section h2,
    .products-section h2,
    .process-section h2,
    .clients-section h2{
        font-size:1.9rem;
        margin-bottom:30px;
    }
}

/* ===================================
   RESPONSIVE MÉTRICAS
=================================== */

.stats-section{
    padding:70px 0 50px;
}

.stats-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:25px;
}

.counter-box{
    width:100%;
    min-width:0;
}

/* Tablet */
@media(max-width:1024px){

    .stats-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

}

/* Celular */
@media(max-width:600px){

    .stats-section{
        padding:45px 0 35px;
    }

    .stats-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .counter-box{
        padding:28px 18px;
    }

    .counter-box h3{
        font-size:2.4rem;
    }

    .counter-box p{
        font-size:.9rem;
    }

}

/* ===================================
   ANIMACIÓN DE PÁRRAFOS
=================================== */

.reveal-text{

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal-text.active{

    opacity:1;

    transform:translateY(0);
}

@media(max-width:768px){

    .reveal-text{

        opacity:0;

        transform:translateY(60px);

        transition:
            opacity .9s ease,
            transform .9s ease;
    }

}

/* ===================================
   ANIMACIÓN PREMIUM MOBILE / SCROLL
=================================== */

.reveal-up,
.reveal-scale{
    opacity:0;
    will-change:transform, opacity;
}

.reveal-up{
    transform:translateY(90px);
    transition:opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1);
}

.reveal-scale{
    transform:translateY(70px) scale(.92);
    transition:opacity 1s ease, transform 1s cubic-bezier(.22,1,.36,1);
}

.reveal-up.active{
    opacity:1;
    transform:translateY(0);
}

.reveal-scale.active{
    opacity:1;
    transform:translateY(0) scale(1);
}

@media(max-width:768px){

    .reveal-up{
        transform:translateY(120px);
        transition:opacity 1s ease, transform 1s cubic-bezier(.16,1,.3,1);
    }

    .reveal-scale{
        transform:translateY(100px) scale(.88);
        transition:opacity 1.1s ease, transform 1.1s cubic-bezier(.16,1,.3,1);
    }

}

/* ===================================
   WEARHOUSE - MOVIMIENTO PREMIUM
=================================== */

.premium-reveal{
    opacity:0;
    will-change:transform, opacity, filter;
    transition:
        opacity .9s ease,
        transform 1s cubic-bezier(.16,1,.3,1),
        filter 1s ease;
    filter:blur(6px);
}

.premium-reveal.from-bottom{
    transform:translateY(120px) scale(.96);
}

.premium-reveal.from-left{
    transform:translateX(-120px) scale(.96);
}

.premium-reveal.from-right{
    transform:translateX(120px) scale(.96);
}

.premium-reveal.from-zoom{
    transform:translateY(80px) scale(.82);
}

.premium-reveal.is-visible{
    opacity:1;
    transform:translateX(0) translateY(0) scale(1);
    filter:blur(0);
}

/* Movimiento más visible en celular */
@media(max-width:768px){

    .premium-reveal{
        transition:
            opacity 1s ease,
            transform 1.15s cubic-bezier(.16,1,.3,1),
            filter 1s ease;
        filter:blur(8px);
    }

    .premium-reveal.from-bottom{
        transform:translateY(160px) scale(.93);
    }

    .premium-reveal.from-left{
        transform:translateX(-100px) scale(.94);
    }

    .premium-reveal.from-right{
        transform:translateX(100px) scale(.94);
    }

    .premium-reveal.from-zoom{
        transform:translateY(120px) scale(.78);
    }

}

/* ===================================
   MOVIMIENTO CONTINUO SUAVE
=================================== */

.hero-feature i,
.icon-circle,
.service-icon,
.process-icon,
.client-logo i{
    animation:softFloat 3.8s ease-in-out infinite;
}

.hero-feature:nth-child(2) i,
.audience-card:nth-child(2) .icon-circle,
.service-card:nth-child(2) .service-icon,
.process-step:nth-child(3) .process-icon,
.client-logo:nth-child(2) i{
    animation-delay:.4s;
}

.hero-feature:nth-child(3) i,
.audience-card:nth-child(3) .icon-circle,
.service-card:nth-child(3) .service-icon,
.process-step:nth-child(5) .process-icon,
.client-logo:nth-child(3) i{
    animation-delay:.8s;
}

.hero-feature:nth-child(4) i,
.audience-card:nth-child(4) .icon-circle,
.service-card:nth-child(4) .service-icon,
.process-step:nth-child(7) .process-icon,
.client-logo:nth-child(4) i{
    animation-delay:1.2s;
}

@keyframes softFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}

/* ===================================
   HOVER MÁS PROFESIONAL
=================================== */

.audience-card:hover .icon-circle,
.service-card:hover .service-icon,
.process-step:hover .process-icon{
    transform:translateY(-10px) scale(1.08);
    box-shadow:
        0 15px 30px rgba(0,91,187,.22),
        0 0 0 8px rgba(0,91,187,.08);
}

.product-card:hover,
.service-card:hover,
.counter-box:hover{
    transform:translateY(-12px) scale(1.02);
}

/* ===================================
   ACCESIBILIDAD
=================================== */

@media(prefers-reduced-motion:reduce){

    .premium-reveal,
    .premium-reveal.from-bottom,
    .premium-reveal.from-left,
    .premium-reveal.from-right,
    .premium-reveal.from-zoom{
        opacity:1;
        transform:none;
        filter:none;
        transition:none;
    }

    .hero-feature i,
    .icon-circle,
    .service-icon,
    .process-icon,
    .client-logo i{
        animation:none;
    }

}

/* ===================================
   FIX MOBILE / TABLET WEARHOUSE
=================================== */

@media(max-width:768px){

    body{
        overflow-x:hidden;
    }

    .header{
        position:relative;
    }

    .navbar{
        flex-direction:column;
        height:auto;
        padding:18px 0;
        gap:15px;
    }

    .logo img{
        height:70px;
        max-width:230px;
        object-fit:contain;
    }

    .nav-menu{
        display:none;
    }

    .header .btn{
        width:100%;
        max-width:420px;
        margin:auto;
        padding:15px 20px;
    }

    .hero{
        min-height:auto;
        padding:70px 0 50px;
        background-position:center;
    }

    .hero-overlay{
        background:rgba(0,46,99,.78);
    }

    .hero-container{
        min-height:auto;
        display:block;
    }

    .hero-content{
        width:100%;
        max-width:100%;
        text-align:center;
    }

    .hero-content h1{
        font-size:2.4rem;
        line-height:1.12;
        margin-bottom:18px;
    }

    .hero-content p{
        font-size:1rem;
        margin-bottom:25px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:14px;
        width:100%;
    }

    .hero-buttons .btn{
        width:100%;
        max-width:420px;
        margin:auto;
    }

    .hero-features{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
        margin-top:35px;
    }

    .hero-feature{
        justify-content:center;
        text-align:center;
        flex-direction:column;
    }

    .hero-feature i{
        font-size:26px;
    }

    .premium-reveal.from-left,
    .premium-reveal.from-right,
    .premium-reveal.from-bottom,
    .premium-reveal.from-zoom{
        transform:translateY(80px) scale(.96);
    }

    .premium-reveal.is-visible{
        transform:translateY(0) scale(1);
    }
}

@media(max-width:480px){

    .hero-content h1{
        font-size:2rem;
    }

    .hero-features{
        grid-template-columns:1fr;
    }

    .whatsapp-float{
        width:58px;
        height:58px;
        font-size:28px;
        right:18px;
        bottom:18px;
    }
}