/*==================================================
    PROLIMP V2
    Desarrollado desde cero
==================================================*/


/*==========================
        VARIABLES
===========================*/

:root{

    --primary:#16a34a;
    --primary-dark:#15803d;
    --secondary:#0f172a;
    --dark:#081018;
    --white:#ffffff;
    --gray:#64748b;
    --light:#f8fafc;

    --radius:18px;

    --shadow:0 20px 50px rgba(0,0,0,.12);

    --transition:.35s;

}



/*==========================
        RESET
===========================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--light);

    color:#222;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}



/*==========================
        CONTAINER
===========================*/

.container{

    width:min(92%,1280px);

    margin:auto;

}



/*==========================
        HEADER
===========================*/
/*=========================================
            HEADER
=========================================*/

.header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:9999;

    transition:.35s;

}
.header .container{

    width:min(1400px,94%);
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

}
/* Barra superior */

.top-bar{

 background:#16a34a;

    height:40px;

    display:flex;

    align-items:center;

}

.top-content{

    height:40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-left,
.top-right{

    display:flex;

    gap:30px;

}

.top-left span,
.top-right span{

    display:flex;

    align-items:center;

    gap:8px;

}

/* Menú */

.header-content{

    height:78px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.btn-header{

    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:12px 22px;
    border-radius:999px;
    background:#16a34a;
    color:#fff;
    font-size:14px;
    font-weight:700;
    box-shadow:0 8px 24px rgba(22,163,74,.28);
    transition:transform .3s ease, background .3s ease;

}

.btn-header:hover{

    background:#22c55e;
    transform:translateY(-2px);

}

/* Fondo inicial */

.header{

    background:rgba(8,16,24,.15);

    backdrop-filter:blur(8px);

}

/* Al hacer scroll */

.header.scrolled{

    background:rgba(255,255,255,.97);

    backdrop-filter:blur(15px);

    box-shadow:0 10px 30px rgba(0,0,0,.12);

    
}
.header.scrolled .menu a,
.header.scrolled .menu a:link,
.header.scrolled .menu a:visited{

    color:#081018 !important;

}
.menu a:hover{

    color:#22c55e !important;

}

.header.scrolled .menu a:hover{

    color:#22c55e !important;

} 

.header.scrolled .logo img{

    width:160px;

}
/* Logo */

.logo{

    flex:0 0 auto;

}

.logo img{

    width:180px;
    height:auto;
    display:block;

}


/* Menú */
.menu{

    display:flex;
    align-items:center;
    gap:50px;

}
.menu a,
.menu a:link,
.menu a:visited{

    position:relative;

    color:#ffffff !important;

    font-size:17px;

    font-weight:600;

    white-space:nowrap;

    text-decoration:none;

    transition:.35s;

}



.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#22c55e;

    border-radius:20px;

    transition:.35s;

}

.menu a:hover::after{

    width:100%;

}

/*==========================
        HERO
===========================*/

.hero{

    position:relative;
    min-height:820px;
    display: flex;
    align-items: center;
    overflow: hidden;
  margin-top:0; 

}



.slider{
    margin-top:160px;
}

.heroSlider{

    width:100%;

    height:820px;
    

}



.swiper-slide{

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:820px;

    background:
        radial-gradient(circle at 80% 42%, rgba(22,163,74,.25), transparent 34%),
        radial-gradient(circle at 58% 65%, rgba(14,116,144,.16), transparent 32%),
        linear-gradient(115deg, #020b16 0%, #061828 56%, #052b2b 100%);

}
/*=========================================
        HERO CONTADORES
=========================================*/
.hero-stats{

    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:25px;

    width:min(1200px,90%);
    display:flex;
    justify-content:space-between;
    gap:20px;
    z-index:20;

}

.stat-card{

    background:rgba(14,22,34,.82);
    backdrop-filter:blur(15px);

    border:1px solid rgba(34,197,94,.25);

    border-radius:22px;

    padding:22px 28px;

    display:flex;

    align-items:center;

    gap:18px;

    min-width:210px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    animation:statsIn .7s ease both;

}

.hero-stats .stat-card:nth-child(2){ animation-delay:.08s; }
.hero-stats .stat-card:nth-child(3){ animation-delay:.16s; }
.hero-stats .stat-card:nth-child(4){ animation-delay:.24s; }

.stat-card:hover{

    transform:translateY(-8px);

    border-color:#22c55e;

    box-shadow:0 25px 45px rgba(34,197,94,.20);

}

.stat-card i{

    font-size:42px;

    color:#22c55e;

}

.stat-card h3{

    color:white;

    font-size:36px;

    margin:0;

    font-weight:800;

}

.stat-card p{

    margin:0;

    color:#c7d0db;

    font-size:16px;

}
/*==========================
        HERO CONTENT
===========================*/

.hero-content{

    width:min(1250px,92%);

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

    min-height:100vh;

    padding:90px 0 150px;

}

.slide-one .hero-left,
.slide-one .hero-right{

    position:relative;
    top:-30px;

}

/*==========================
        LADO IZQUIERDO
===========================*/

.hero-left{

    color:white;

    z-index:5;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    padding:12px 22px;

    border-radius:50px;

    font-size:.9rem;

    font-weight:600;

    margin-bottom:30px;

}

.hero-tag i{

    color:#22c55e;

}

.hero-left h1{

    font-size:4.25rem;

    line-height:1.1;

    font-weight:800;

    margin-bottom:25px;

}

.hero-left h1 span{

    color:#22c55e;

}

.hero-left p{

    font-size:1.1rem;

    color:#dbe4ee;

    line-height:1.8;

    max-width:560px;

    margin-bottom:40px;

}

/*==========================
        BOTONES
===========================*/

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:60px;

}

.btn-primary{

    background:#16a34a;

    color:white;

    padding:18px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(22,163,74,.35);

}

.btn-primary:hover{

    transform:translateY(-5px);

    background:#15803d;

}

.btn-secondary{

    border:2px solid rgba(255,255,255,.35);

    color:white;

    padding:18px 35px;

    border-radius:50px;

    transition:.35s;

}

.btn-secondary:hover{

    background:white;

    color:#111827;

}

/*==========================
        ESTADÍSTICAS
===========================*/

.hero-data{

    display:flex;

    gap:50px;

}

.data-item h3{

    font-size:2rem;

    color:white;

    margin-bottom:8px;

}

.data-item span{

    color:#dbe4ee;

    font-size:.95rem;

}
/*======================================
        HERO RIGHT
=======================================*/

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}
.hero-image img{

  width:100%;
    max-width:700px;

    object-fit:contain;

}
.hero-image{

     display:flex;
    justify-content:center;
    align-items:center;

    height:100%;
}

.hero-right img{

    max-width:760px;

    width:100%;

    animation:float 5s ease-in-out infinite;

    filter:drop-shadow(0 40px 70px rgba(0,0,0,.35));

    z-index:10;

}

.slide-two .hero-right img{

    max-width:none;
    width:138%;
    mix-blend-mode:normal;
    filter:drop-shadow(0 40px 70px rgba(0,0,0,.4)) saturate(1.28) contrast(1.08);
    animation:floatPromo 5s ease-in-out infinite;

}

/*======================================
        DECORACIÓN
=======================================*/

.hero-right::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(34,197,94,.35),
    transparent 70%);

    filter:blur(30px);

    z-index:1;

}

.hero-right::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.15);

    z-index:2;

}

/*======================================
        FLECHAS SWIPER
=======================================*/

.swiper-button-next,
.swiper-button-prev{

    position:absolute;
    top:50%;
    margin-top:0;
    width:60px;

    height:60px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    transition:.35s;

    border:0;
    cursor:pointer;
    transform:translateY(-50%);

}

.swiper-button-next::after,
.swiper-button-prev::after{

    color:#fff;

    font-size:22px;

    font-weight:bold;

}

.swiper-button-next:hover,
.swiper-button-prev:hover{

    background:#16a34a;

    transform:translateY(-50%) scale(1.08);

}

/*======================================
        PAGINACIÓN
=======================================*/

.swiper-pagination{

    bottom:25px !important;
    z-index:12;

}

.swiper-pagination-bullet{

    width:14px;

    height:14px;

    background:white;

    opacity:.45;

    transition:.35s;

}

.swiper-pagination-bullet-active{

    width:42px;

    border-radius:50px;

    background:#22c55e;

    opacity:1;

}

/*======================================
        ANIMACIÓN
=======================================*/

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*======================================
        FEATURES
=======================================*/

.features{

    margin-top:-15px;

    position:relative;

    z-index:100;

}

.features .container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:14px;

}

.feature-card{

    background:linear-gradient(135deg,#071b2b,#061421);
    border:1px solid rgba(34,197,94,.18);
    border-radius:16px;
    padding:22px 24px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

    transition:.35s;

    text-align:left;
    display:flex;
    align-items:flex-start;
    gap:18px;

}

.feature-card:hover{

    transform:translateY(-12px);

}

.feature-card i{

    font-size:42px;

    color:#16a34a;

    flex:0 0 auto;

}

.feature-card h3{

    margin-bottom:15px;

    color:#fff;
    font-size:1.05rem;

}

.feature-card p{

    color:#c7d0db;
    font-size:.82rem;

    line-height:1.7;

}

.feature-card a{

    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:10px;
    color:#22c55e;
    font-size:.82rem;
    font-weight:700;

}

.feature-card a i{

    font-size:16px;

}

/*====================================
        PRODUCTOS
=====================================*/

.products{

    padding:120px 0;

    background:#f8fafc;

}

.products .section-title span{

    color:#0f8a45;
    font-weight:800;

}

.products .section-title h2{

    color:#073b2a;
    font-weight:800;

}

.products .section-title p{

    color:#334155;
    font-weight:500;

}

.section-title{

    text-align:center;

    max-width:700px;

    margin:auto auto 70px;

}

.section-title span{

    color:#16a34a;

    font-weight:700;

    letter-spacing:2px;

}

.section-title h2{

    font-size:3rem;

    margin:15px 0;

    color:#081018;

}

.section-title p{

    color:#64748b;

    font-size:1.1rem;

    line-height:1.8;

}

/*====================================
        FOOTER
=====================================*/

footer{

    background:#061a28;

    color:white;

    padding:24px 0 14px;

    text-align:left;

    border-top:1px solid rgba(34,197,94,.18);

}

.footer-contact{

    display:grid;
    grid-template-columns:1.25fr 1fr 1fr 1fr;
    gap:28px;
    align-items:center;
    padding:8px 0 24px;

}

.footer-help,
.footer-item{

    display:flex;
    align-items:center;
    gap:14px;

}

.footer-help>i,
.footer-item>i{

    color:#22c55e;
    font-size:32px;
    flex:0 0 auto;

}

.footer-help h3{

    color:#fff;
    font-size:1rem;
    margin-bottom:4px;

}

.footer-help p,
.footer-item small{

    display:block;
    color:#b8c7d3;
    font-size:.75rem;
    line-height:1.45;

}

.footer-item{

    color:#fff;

}

.footer-item strong{

    display:block;
    color:#fff;
    font-size:.95rem;
    margin-bottom:5px;

}

.footer-social{

    text-align:center;

}

.footer-social>span{

    display:block;
    color:#d6e0e7;
    font-size:.78rem;
    margin-bottom:10px;

}

.footer-social div{

    display:flex;
    justify-content:center;
    gap:16px;

}

.footer-social a{

    color:#fff;
    font-size:22px;
    transition:.25s ease;

}

.footer-social a:hover{

    color:#22c55e;
    transform:translateY(-2px);

}

footer p{

    opacity:.8;
    text-align:center;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,.1);
    font-size:.75rem;

}

/*==================================================
                PRODUCTOS
==================================================*/

.products{

    padding:120px 0;

    background:#f8fafc;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*==============================
        TARJETA
===============================*/

.product-card{

    background:white;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

    text-align:center;

    padding:25px;

    position:relative;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 70px rgba(0,0,0,.18);

}

/*==============================
        IMAGEN
===============================*/

.product-image{

    height:230px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;
    padding:12px;
    border-radius:14px;
    background:linear-gradient(145deg,#f0fdf4,#e0f2f1);

}

.product-image img{

    max-height:210px;
    filter:saturate(1.18) contrast(1.08) drop-shadow(0 12px 18px rgba(8,16,24,.16));

    transition:.45s;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}

/*==============================
        TEXTO
===============================*/

.product-card h3{

    font-size:1.35rem;

    margin-bottom:10px;

    color:#081018;

}

.product-card p{

    color:#64748b;

    margin-bottom:20px;

}

.price{

    display:block;

    font-size:1.8rem;

    font-weight:700;

    color:#16a34a;

    margin-bottom:25px;

}

/*==============================
        BOTÓN
===============================*/

.product-btn{

    display:inline-block;

    background:#16a34a;

    color:white;

    padding:14px 30px;

    border-radius:50px;

    transition:.35s;

    font-weight:600;

}

.product-btn:hover{

    background:#15803d;

}

/*====================================
            EFECTOS
=====================================*/

.product-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:5px;

    background:#16a34a;

    transition:.45s;

}

.product-card:hover::before{

    left:0;

}

.product-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    border:2px solid transparent;

    transition:.35s;

}

.product-card:hover::after{

    border-color:#22c55e;

}
/*==================================================
                CATEGORÍAS
==================================================*/

.categories{

    padding:120px 0;

    background:white;

}

.categories-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:25px;

}

.category-card{

    background:#f8fafc;

    border-radius:22px;

    padding:40px 20px;

    text-align:center;

    transition:.35s;

    cursor:pointer;

    border:1px solid #e5e7eb;

}

.category-card:hover{

    transform:translateY(-12px);

    background:#16a34a;

    color:white;

    box-shadow:0 25px 50px rgba(22,163,74,.35);

}

.category-card i{

    font-size:50px;

    color:#16a34a;

    margin-bottom:20px;

    transition:.35s;

}

.category-card:hover i{

    color:white;

}

.category-card h3{

    font-size:1.1rem;

}

.categories .section-title span{

    color:#0f8a45;
    font-weight:800;

}

.categories .section-title h2{

    color:#073b2a;
    font-weight:800;

}

.categories .section-title p{

    color:#334155;
    font-weight:500;

}
/*==================================================
                PROMOCIÓN
==================================================*/

.promo{

    padding:120px 0;

    background:#f8fafc;

}

.promo-content{

    background:linear-gradient(
    135deg,
    #081018,
    #0f172a,
    #16a34a);

    border-radius:35px;

    padding:80px;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

    overflow:hidden;

    position:relative;

}

.promo-content::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-200px;

    right:-150px;

}

.promo-left{

    color:white;

    z-index:5;

}

.promo-left span{

    display:inline-block;

    margin-bottom:20px;

    background:rgba(255,255,255,.12);

    padding:10px 20px;

    border-radius:50px;

    font-weight:600;

}

.promo-left h2{

    font-size:3rem;

    line-height:1.2;

    margin-bottom:25px;

}

.promo-left p{

    color:#dbe4ee;

    line-height:1.8;

    margin-bottom:35px;

}

.promo-btn{

    display:inline-block;

    background:white;

    color:#081018;

    padding:18px 35px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.promo-btn:hover{

    transform:translateY(-5px);

}

.promo-right{

    display:flex;

    justify-content:center;

}

.promo-right img{

    width:100%;

    max-width:500px;
    filter:saturate(1.14) contrast(1.06) drop-shadow(0 24px 34px rgba(8,16,24,.22));

}
/*==================================================
                WHY US
==================================================*/

.why-us{

    padding:120px 0;

    background:white;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.why-image{

    text-align:center;

}

.why-image img{

    max-width:500px;

    width:100%;
    filter:saturate(1.14) contrast(1.06) drop-shadow(0 30px 60px rgba(0,0,0,.18));

}

.section-tag{

    display:inline-block;

    color:#16a34a;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}

.why-content h2{

    font-size:2.8rem;

    color:#073b2a;

    margin-bottom:25px;

    line-height:1.2;

}

.why-content>p{

    color:#334155;

    line-height:1.8;

    margin-bottom:40px;

}

.why-items{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.why-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:25px;

    border-radius:20px;

    background:#f8fafc;

    transition:.35s;

}

.why-item:hover{

    transform:translateX(10px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.why-item i{

    font-size:34px;

    color:#16a34a;

}

.why-item h4{

    margin-bottom:8px;

    color:#073b2a;

}

.why-item p{

    color:#475569;

}

.why-us .why-content h2{

    color:#fff;

}

.why-us .why-content>p{

    color:#cbd5e1;

}
/*==================================================
                CONTADORES
==================================================*/

.counter{

    padding:100px 0;

    background:linear-gradient(135deg,#081018,#0f172a);

}

.counter-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.counter-card{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border-radius:25px;

    padding:45px;

    text-align:center;

    transition:.35s;

}

.counter-card:hover{

    transform:translateY(-12px);

    background:#16a34a;

}

.counter-card i{

    font-size:55px;

    color:#22c55e;

    margin-bottom:25px;

}

.counter-card h2{

    color:white;

    font-size:3.2rem;

    margin-bottom:15px;

}

.counter-card p{

    color:#dbe4ee;

}
/*==================================================
                CLIENTES
==================================================*/

.clients{

    padding:120px 0;

    background:white;

    overflow:hidden;

}

.clients .section-title span{

    color:#0f8a45;
    font-weight:800;

}

.clients .section-title h2{

    color:#073b2a;
    font-weight:800;

}

.clients .section-title p{

    color:#334155;
    font-weight:500;

}

.logos{

    overflow:hidden;

    white-space:nowrap;

    position:relative;

    margin-top:45px;
    padding:12px 0;

}

.logos::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:120px;

    height:100%;

    background:linear-gradient(to right,#fff,transparent);

    z-index:5;

}

.logos::after{

    content:"";

    position:absolute;

    right:0;

    top:0;

    width:120px;

    height:100%;

    background:linear-gradient(to left,#fff,transparent);

    z-index:5;

}

.logos-slide{

    display:inline-flex;

    gap:80px;

    animation:slide 25s linear infinite;

}

.logos-slide img{

    width:170px;
    height:82px;
    padding:14px 22px;
    object-fit:contain;
    background:#f8fafc;
    border:1px solid #dbe5df;
    border-radius:14px;
    box-shadow:0 10px 24px rgba(8,16,24,.08);

    opacity:.95;

    transition:.35s;

}

.logos-slide img:hover{

    opacity:1;

    transform:scale(1.08);

    border-color:#16a34a;

    box-shadow:0 14px 30px rgba(22,163,74,.16);

}

@keyframes slide{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}
/*==================================================
                TESTIMONIOS
==================================================*/

.testimonials{

    padding:120px 0;

    background:#f8fafc;

}

.testimonials .section-title span{

    color:#0f8a45;
    font-weight:800;

}

.testimonials .section-title h2{

    color:#073b2a;
    font-size:clamp(2rem,4vw,3rem);
    font-weight:800;

}

.testimonials .section-title p{

    color:#334155;
    font-size:1rem;
    line-height:1.7;
    font-weight:500;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonialSlider{

    position:relative;
    padding:8px 6px 50px;
    overflow:hidden;

}

.testimonialSlider .swiper-slide{

    display:block;
    align-items:initial;
    min-height:0;
    height:auto;

}

.testimonial-card{

    background:white;

    border-radius:25px;

    padding:35px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.35s;
    border:1px solid #e2e8f0;
    height:auto;
    min-height:245px;
    display:flex;
    flex-direction:column;

}

.testimonial-card:hover{

    transform:translateY(-12px);

}

.stars{

    color:#fbbf24;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-card p{

    line-height:1.8;

    color:#334155;
    font-size:.98rem;
    font-weight:500;

    margin-bottom:30px;
    flex:1;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;
    width:100%;
    min-width:0;

}

.client img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}

.client h4{

    color:#073b2a;
    font-size:1rem;
    white-space:nowrap;

}

.client span{

    color:#64748b;
    font-size:.85rem;

}

.testimonial-prev,
.testimonial-next{

    position:absolute;
    top:45%;
    z-index:5;
    width:38px;
    height:38px;
    border:0;
    border-radius:50%;
    background:#073b2a;
    color:#fff;
    cursor:pointer;
    transform:translateY(-50%);
    transition:.25s ease;

}

.testimonial-prev{ left:-12px; }
.testimonial-next{ right:-12px; }
.testimonial-prev::after{ content:"<"; font-size:22px; font-family:Arial,sans-serif; }
.testimonial-next::after{ content:">"; font-size:22px; font-family:Arial,sans-serif; }

.testimonial-prev:hover,
.testimonial-next:hover{

    background:#16a34a;
    transform:translateY(-50%) scale(1.08);

}

.testimonial-pagination{

    bottom:8px !important;

}

.testimonial-pagination .swiper-pagination-bullet-active{

    background:#16a34a;

}
/*==================================================
            MENÚ MÓVIL
==================================================*/

.menu-toggle{

    display:none;

    width:46px;
    height:46px;
    padding:11px 9px;
    color:white;

    cursor:pointer;

    z-index:99999;

    background:rgba(8,16,24,.78);
    border:0;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.16);
    transition:.3s ease;

}

.menu-toggle span{

    display:block;
    width:100%;
    height:3px;
    margin:4px 0;
    border-radius:10px;
    background:currentColor;
    transition:transform .3s ease, opacity .2s ease;

}

.menu-toggle:hover,
.menu-toggle.active{

    background:#16a34a;
    transform:translateY(-2px);

}

.menu-toggle.active span:nth-child(1){

    transform:translateY(7px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-7px) rotate(-45deg);

}

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:320px;

    height:100vh;

    background:#081018;

    display:flex;

    flex-direction:column;

    justify-content:center;

    gap:35px;

    padding:40px;

    transition:.45s;

    z-index:9998;
    box-shadow:-20px 0 55px rgba(0,0,0,.25);

}

.mobile-menu a{

    color:white;

    font-size:22px;

    font-weight:600;
    opacity:0;
    transform:translateX(25px);
    transition:opacity .35s ease, transform .35s ease, color .25s ease;

}

.mobile-menu a:hover{

    color:#22c55e;

}

.mobile-menu.active{

    right:0;

}

.mobile-menu.active a{

    opacity:1;
    transform:translateX(0);

}

.mobile-menu.active a:nth-child(1){ transition-delay:.08s; }
.mobile-menu.active a:nth-child(2){ transition-delay:.14s; }
.mobile-menu.active a:nth-child(3){ transition-delay:.20s; }
.mobile-menu.active a:nth-child(4){ transition-delay:.26s; }
.mobile-menu.active a:nth-child(5){ transition-delay:.32s; }

@keyframes statsIn{

    from{
        opacity:0;
        transform:translateY(18px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*=========================================
            TOP BAR
==========================================*/

.topbar{

    background:#16a34a;

    color:#fff;

    font-size:14px;

    padding:8px 0;

}

.topbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.topbar-left,
.topbar-right{

    display:flex;

    gap:30px;

}

.topbar span{

    display:flex;

    align-items:center;

    gap:8px;

}
/*==================================
      WHATSAPP FLOAT
==================================*/

.whatsapp-float{

    position:fixed;

    right:30px;

    bottom:30px;

    width:70px;

    height:70px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:34px;

    box-shadow:0 10px 30px rgba(37,211,102,.45);

    z-index:99999;

    transition:.35s;

    animation:whatsappPulse 2s infinite;

}

.whatsapp-float:hover{

    transform:scale(1.12);

}

@keyframes whatsappPulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.5);

    }

    70%{

        box-shadow:0 0 0 20px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}
/*==========================
      WHY US
==========================*/

.why-us{

    padding:120px 0;

    background:#0f172a;

    position:relative;

    overflow:hidden;

}

.section-title{

    text-align:center;

    max-width:750px;

    margin:0 auto 70px;

}

.section-title span{

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;

}

.section-title h2{

    margin-top:15px;

    font-size:48px;

    line-height:1.2;

    color:#fff;

}

.section-title p{

    margin-top:20px;

    color:#94a3b8;

    font-size:18px;

    line-height:1.8;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:45px 30px;

    text-align:center;

    transition:.4s;

    backdrop-filter:blur(12px);

}

.why-card i{

    font-size:55px;

    color:#22c55e;

    margin-bottom:25px;

}

.why-card h3{

    color:white;

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    color:#94a3b8;

    line-height:1.8;

}

.why-card:hover{

    transform:translateY(-12px);

    border-color:#22c55e;

    box-shadow:0 25px 60px rgba(34,197,94,.15);

}
/*==================================
        TRUST BAR
===================================*/

.trust-bar{

    width:100%;

    overflow:hidden;

    background:#0b1220;

    border-top:1px solid rgba(255,255,255,.05);

    border-bottom:1px solid rgba(255,255,255,.05);

    padding:22px 0;

    position:relative;

}

.trust-track{

    display:flex;

    align-items:center;

    gap:55px;

    width:max-content;

    animation:scrollTrust 35s linear infinite;

}

.trust-track span{

    color:#ffffff;

    font-size:18px;

    font-weight:600;

    white-space:nowrap;

    opacity:.9;

    transition:.3s;

}

.trust-track span:nth-child(even){

    color:#22c55e;

    font-size:24px;

}

.trust-track span:hover{

    color:#22c55e;

    transform:scale(1.05);

}

.trust-bar:hover .trust-track{

    animation-play-state:paused;

}

@keyframes scrollTrust{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@keyframes floatPromo{

    0%,100%{
        transform:translateY(0) scale(1.08);
    }

    50%{
        transform:translateY(-14px) scale(1.08);
    }

}

.slide-one .hero-right img{

    position:relative;
    left:-95px;
    mix-blend-mode:normal;
    max-width:none;
    width:145%;
    filter:drop-shadow(0 40px 70px rgba(0,0,0,.4)) saturate(1.18) contrast(1.08);
    animation:floatProduct 5s ease-in-out infinite;

}

@keyframes floatProduct{

    0%,100%{
        transform:translateY(0) scale(1.16);
    }

    50%{
        transform:translateY(-14px) scale(1.16);
    }

}

.slide-three .hero-right img{

    width:145%;
    max-width:none;
    filter:drop-shadow(0 40px 70px rgba(0,0,0,.4)) saturate(1.12) contrast(1.06);

}

.slide-one .hero-left{

    position:relative;
    z-index:20;

}

