html.lenis,
html.lenis body{
    height: auto;
}

.lenis.lenis-smooth{
    scroll-behavior:auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent]{
    overscroll-behavior:contain;
}
.lenis.lenis-stopped{
    overflow:hidden;
}

html{
    scroll-behavior: smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#0f0f1a;
}

/* ==============================
          HERO SECTION 
============================== */
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content: flex-start;
    padding:120px 5%;
    overflow:hidden;
    background-image:
    url("assets/fondo-hero.png");
    background-size:cover;
    background-position:right center;
    background-repeat:no-repeat;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(10,25,45,.35) 0%,
        rgba(10,25,45,.15) 45%,
        rgba(10,25,45,0) 100%
    );
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:1100px;
    margin: 0;
    text-align: left;
    padding-left: 90px;
}

.hero-badge{
    display:inline-flex;
    align-items:flex-start;
    margin: 0 0 20px 0;
    padding:12px 20px;
    border-radius:30px;
    background:
    rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid
    rgba(255,255,255,.15);
    color:white;
    font-size:14px;
    font-weight:500;
}

.hero-content h1{
    font-size:64px;
    line-height:1.05;
    font-weight:800;
    color:white;
    text-transform:uppercase;
    text-align: left;
}

.hero-content p{
    margin-top:25px;
    font-size:20px;
    line-height:1.8;
    color:
    rgba(255,255,255,.85);
    max-width:600px;
    text-align: left;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    justify-content: flex-start;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:#25D366;
    color:white;
    padding:18px 34px;
    border-radius:14px;
    font-weight:600;
    transition:.3s ease;
}

.btn-primary:hover{
    transform:
    translateY(-3px);
    box-shadow:
    0 10px 30px
    rgba(37,211,102,.35);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    padding:18px 34px;
    border-radius:14px;
    color:white;
    border:2px solid
    rgba(255,255,255,.35);
    backdrop-filter:blur(10px);
    transition:.3s ease;
}

.btn-secondary:hover{
    background:
    rgba(255,255,255,.1);
    transform:
    translateY(-3px);
}

.hero-benefits{
    margin-top:30px;
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    justify-content: flex-start;
}

.hero-benefits span{
    color:white;
    font-size:15px;
    font-weight:500;
}

.hero-benefits i{
    color:#25D366;
    margin-right:8px;
}

/* PALABRAS ROTATIVAS */
.hero-rotating{
    margin-top:40px;
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.static-text{
    font-size:28px;
    font-weight:600;
    color:white;
}

.rotating-text{
    position:relative;
    color:#ffd13e;
    font-size:28px;
    font-weight:700;
    min-width:220px;
    transition:
    opacity .5s ease,
    transform .5s ease;
}

/* ==============================
             NAVBAR 
============================== */

.navbar{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%) scale(1);
    width:92%;
    max-width:1400px;
    padding:18px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:9999;
    border-radius:22px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.12);
    box-shadow:
    0 10px 35px rgba(0,0,0,0.12);
    transition:
    all .4s ease;
    transform: .4s ease;
}

.navbar.light{
    top:12px;
    width:88%;
    padding:14px 26px;
    transform:
    translateX(-50%)
    scale(0.96);
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);
    border:1px solid rgba(255,255,255,0.55);
    box-shadow:
    0 12px 40px rgba(0,0,0,0.08);
}

.navbar.light .logo img{
    width:145px;
}

.navbar.light .nav-center{
    gap: 35px;
}

.navbar.light .nav-center a{
    color:#1f2937;
}

.navbar.light .nav-center a::after{
    background:#4d67ff;
}

.navbar.scrolled{
    top:12px;
    padding:14px 26px;
    background:
    rgba(255,255,255,0.65);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);
    border:1px solid
    rgba(255,255,255,0.45);
    box-shadow:
    0 12px 40px
    rgba(77,103,255,0.10);
}

/* NAV CENTER */

.nav-center{
    display:flex;
    align-items:center;
    gap:45px;
    transition: 4s ease;
}
.nav-center a.active{
    color:#1b1b1b;
    font-weight:500;
}

.nav-center a.active::after{
    width:100%;
}

.nav-center a{
    position:relative;
    text-decoration:none;

    color:white;

    font-size:17px;
    font-weight:400;

    transition:0.3s ease;
}
.nav-center a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:white;
    transition:0.3s ease;
}

.nav-center a:hover::after{
    width: 100%;
}

/* LOGO */
.logo{
    display: flex;
    align-items: center;
}

.logo img{
    width: 145px;
    object-fit: contain;
    transition: 4s ease;
}

.logo img:hover{
    transform:scale(1.03);
    transition: .3s ease;
}

/* REDES SOCIALES ICONOS */

.social-icons{
    display:flex;
    align-items:center;
    gap:18px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:14px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.18);
    backdrop-filter:blur(10px);
    color:white;
    font-size:22px;
    text-decoration:none;
    transition:0.3s ease;
    box-shadow:
    0 4px 20px rgba(0,0,0,0.15);
}

.social-icons a:hover{
    transform:
    translateY(-5px)
    scale(1.05);
}

/* WHATSAPP */
.social-icons a:nth-child(1):hover{
    background:#25D366;
}

/* FACEBOOK */
.social-icons a:nth-child(2):hover{
    background:#1877F2;
}

/* INSTAGRAM */
.social-icons a:nth-child(3):hover{
    background:
    linear-gradient(
        45deg,
        #f9ce34,
        #ee2a7b,
        #6228d7
    );
}

.navbar.light .social-icons a{
    color:#1f2937;
    background:rgba(255,255,255,0.55);
    border:1px solid rgba(0,0,0,0.08);
}

.logo{
    color:white;
    font-size:22px;
    font-weight:600;
}

/*==============================
        MENÚ HAMBURGUESA
==============================*/

/* MENU INICIAL PARA ANIMACION*/
.menu-item{
    opacity:0;
    transform:
    translateY(18px);
    transition:
    opacity .45s ease,
    transform .45s ease;
}

/* MENU ABIERTO PARA ANIMACION*/
.mobile-menu.show .menu-item{
    opacity:1;
    transform:
    translateY(0);
}

/* EFECTO STAGGER ANIMATION */
.mobile-menu.show .menu-item:nth-child(1){
    transition-delay:.08s;
}
.mobile-menu.show .menu-item:nth-child(2){
    transition-delay:.16s;
}
.mobile-menu.show .menu-item:nth-child(3){
    transition-delay:.24s;
}
.mobile-menu.show .menu-item:nth-child(4){
    transition-delay:.32s;
}
.mobile-menu.show .menu-item:nth-child(5){
    transition-delay:.40s;
}
.mobile-menu.show .menu-item:nth-child(6){
    transition-delay:.48s;
}

.mobile-menu.show .menu-item{
    opacity:1;
    transform:translateY(0);
    transition-delay:var(--delay);
}


.menu-toggle{
    display:none;
    width:48px;
    height:48px;
    border:none;
    background:transparent;
    cursor:pointer;
    z-index:1200;
    position:relative;
}

.menu-toggle span{
    position:absolute;
    left:10px;
    width:28px;
    height:3px;
    background:white;
    border-radius:10px;
    transition:.35s ease;
}
.menu-toggle.dark span{
    background: #284766;
}

.menu-toggle span:nth-child(1){
    top:14px;
}
.menu-toggle span:nth-child(2){
    top:22px;
}
.menu-toggle span:nth-child(3){
    top:30px;
}

.menu-toggle.active span:nth-child(1){
    transform:
    rotate(45deg);
    top:22px;
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:
    rotate(-45deg);
    top:22px;
}

.mobile-menu{
    position:fixed;
    top:90px;
    left:5%;
    width:90%;
    background:
    rgba(24,44,68,.96);
    backdrop-filter:
    blur(18px);
    border-radius:22px;
    padding:40px;
    transform:
    translateY(-30px);
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
    z-index:999;
    box-shadow:
    0 20px 60px
    rgba(0,0,0,.30);
}

.mobile-menu.show{
    opacity:1;
    visibility:visible;
    transform:
    translateY(0);
}

.mobile-nav{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.mobile-nav a{
    color:white;
    text-decoration:none;
    font-size:22px;
    font-weight:600;
    transition:.25s;
}

.mobile-nav a:hover{
    color:#FFD13E;
    transform:
    translateX(8px);
}

.mobile-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:35px;
    padding:18px;
    background:#25D366;
    color:white;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.mobile-btn:hover{
    transform:
    translateY(-2px);
}

.mobile-social{
    display:flex;
    justify-content:center;
    gap:28px;
    margin-top:35px;
}

.mobile-social a{
    color:white;
    font-size:30px;
    transition:.25s;
}

.mobile-social a:hover{
    color:#FFD13E;
}

/* ====================================
   PREMIUM POLYGON DIVIDER
==================================== */

.polygon-divider{
    background: #ffffff;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.polygon-image{
    display: block;
    width: 100%;
    height: auto;
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
    padding: 140px 8%;
    background: #ffffff;
}

.about-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

/* IMAGE */

.image-wrapper{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    box-shadow:
    0 20px 50px rgba(0,0,0,0.12);
}

.image-wrapper img{
    width:100%;
    display:block;
    object-fit:cover;
}

/* CONTENT */

.section-tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:30px;
    background:rgba(7, 65, 103,0.1);
    color:#074167;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.about-content h2{
    margin-top:25px;
    font-size:48px;
    line-height:1.2;
    color:#1b1b1b;
}

.about-content p{
    margin-top:25px;
    font-size:18px;
    line-height:1.8;
    color:#666;
}

/* FEATURES */

.about-features{
    margin-top:45px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.feature-card{
    padding:25px;
    border-radius:20px;
    background:white;
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
    transition:.3s ease;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 20px 40px rgba(125,66,255,0.12);
}

.feature-icon{
    font-size:30px;
}

.feature-card h3{
    margin-top:15px;
    color:#1b1b1b;
}

.feature-card p{
    margin-top:10px;
    font-size:15px;
    line-height:1.6;
}

/* =========================
   SERVICES SECTION
========================= */
.services-section{
    padding:140px 8%;
    background:#f8faff;
}

.services-header{
    max-width:800px;
    margin:0 auto 80px;
    text-align:center;
}

.services-header h2{
    margin-top:25px;
    font-size:52px;
    color:#1b1b1b;
}

.services-header p{
    margin-top:25px;
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.services-grid{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:35px;
}

/* CARDS */
.service-card{
    position: relative;
    overflow:hidden;
    border-radius:28px;
    background:white;
    box-shadow:
    0 15px 40px rgba(0,0,0,.05);
    transition:.4s ease;
    -webkit-tap-highlight-color: transparent;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:
    0 25px 60px rgba(77,103,255,.18);
}

/* REVEAL EFECTO CARDS */
.reveal{
    opacity:0;
    transform:
    translateY(40px);
    filter:
    blur(10px);
    transition:
    opacity .8s ease,
    transform .8s ease,
    filter .8s ease;
}

.reveal.active{
    opacity:1;
    transform:
    translateY(0);
    filter:
    blur(0);
}

/* IMAGEN */
.service-image{
    overflow:hidden;
    height:240px;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.service-card:hover .service-image img{
    transform:scale(1.05);
}

/* CONTENIDO */
.service-content{
    padding:30px;
}

.service-content h3{
    font-size:24px;
    color:#1b1b1b;
}

.service-content p{
    margin-top:15px;
    color:#666;
    line-height:1.7;
}

/* =========================
   CARACTERISTICAS SECTION
========================= */

.caracteristicas-section{
    background:#eef6ff;
    padding:140px 40px;
}

.features-wrapper{
    margin-top:90px;
    display:flex;
    flex-direction:column;
    gap:80px;
}

.features-row{
    position:relative;
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:40px;
}

.features-row::before{
    content:"";
    position:absolute;
    top:40px;
    left:15%;
    width:70%;
    height:2px;
    background:
    rgba(77,103,255,.15);
    z-index:1;
}

.caracteristicas-container{
    max-width:1400px;
    margin:auto;
    text-align:center;
}

.caracteristicas-container .section-tag{
    display:inline-block;
}

.caracteristicas-container h2{
    margin-top:20px;
    text-align:center;
}

.caracteristicas-container p{
    max-width:800px;
    margin:25px auto 0;
    text-align:center;
}

/* ITEMS */
.feature-item{
    position:relative;
    z-index:2;
    text-align:center;
}

.feature-item h3{
    margin-top:25px;
    font-size:22px;
    color:#1b1b1b;
}

.feature-item p{
    margin-top:15px;
    font-size:16px;
    color:#666;
    line-height:1.7;
}

/* ICONOS */
.feature-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    background:white;
    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
    transition:.35s ease;
}

.feature-item:hover .feature-icon{
    transform:
    translateY(-8px);
    box-shadow:
    0 15px 35px rgba(77,103,255,.15);
}

/* COLORES ICONOS */
.purple{
    color:#7d42ff;
}

.cyan{
    color:#00c2ff;
}

.green{
    color:#00c980;
}

.orange{
    color:#ff8f2d;
}

.pink{
    color:#ff4d6d;
}

.blue{
    color:#4d67ff;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    padding:140px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff
    );
}

.contact-header{
    max-width:800px;
    margin:0 auto 80px;
    text-align:center;
}

.contact-header h2{
    margin-top:25px;
    font-size:52px;
    color:#1b1b1b;
}

.contact-header p{
    margin-top:25px;
    font-size:18px;
    line-height:1.8;
    color:#666;
}

/* GRID */ 
.contact-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1400px;
    margin:auto;
}

/* CARDS */
.contact-card{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-decoration:none;
    padding:45px 35px;
    background:white;
    border-radius:28px;
    text-align:center;
    box-shadow:
    0 15px 40px rgba(0,0,0,.05);
    transition:.4s ease;
    color:#1b1b1b;
}

.contact-card:hover{
    transform:
    translateY(-12px);
    box-shadow:
    0 25px 60px rgba(77,103,255,.15);
}

/* ICONOS */
.contact-card i{
    font-size:56px;
    margin-bottom:25px;
    transition:.4s ease;
}

/* TITULOS */
.contact-card h3{
    font-size:26px;
    margin-bottom:15px;
    transition:.3s ease;
}

.contact-card p{
    color:#666;
    line-height:1.7;
}

/* HOVER PERSONALIZADO */
/* ---- WHATSAPP ---- */
.contact-card.whatsapp:hover i,
.contact-card.whatsapp:hover h3{
    color:#25D366;
}
/* ---- FACEBOOK ---- */
.contact-card.facebook:hover i,
.contact-card.facebook:hover h3{
    color:#1877F2;
}
/* ---- INSTAGRAM ---- */
.contact-card.instagram:hover i,
.contact-card.instagram:hover h3{
    color:#E1306C;
}
/* ---- EMAIL ---- */
.contact-card.email:hover i,
.contact-card.email:hover h3{
    color:#7d42ff;
}

/* ====================================
   PREMIUM POLYGON DIVIDER
==================================== */

.footer-divider{
    background: #ffffff;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-divider-image{
    transform: rotate(180deg);
    display: block;
    width: 100%;
    height: auto;
}

/* =========================
   FOOTER
========================= */

.footer{
    background: linear-gradient(
    135deg,
    #b5b3b7 0%,
    #9ea1ac 20%,
    #747d90 45%,
    #596883 70%,
    #284766 100%
);
    color:white;
    overflow:hidden;
}

.footer-cta{
    padding:120px 8%;
    text-align:center;
}

.footer-cta h2{
    font-size:58px;
    margin-bottom:25px;
}

.footer-cta p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    opacity:.9;
}

/* BOTON WPP FOOTER */
.footer-cta-btn{
    display:inline-block;
    margin-top:40px;
    padding:18px 40px;
    border-radius:18px;
    background:white;
    color:#4d67ff;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
    gap: 10px;
}

.footer-cta-btn:hover{
    transform:
    translateY(-4px);
    box-shadow:
    0 15px 35px rgba(0,0,0,.15);
}

/* CONTENIDO */
.footer-content{
    padding:60px 8%;
    border-top:
    1px solid rgba(255,255,255,.15);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

.footer-logo img{
    width:180px;
}

/* MENU */
.footer-nav{
    display:flex;
    gap:35px;
    flex-wrap:wrap;
}

.footer-nav a{
    color:white;
    text-decoration:none;
    transition:.3s ease;
}

.footer-nav a:hover{
    opacity:.7;
}

/* REDES */
.footer-social{

    display:flex;

    gap:18px;
}

.footer-social a{
    width:48px;
    height:48px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:14px;
    background:
    rgba(255,255,255,.12);
    color:white;
    text-decoration:none;
    backdrop-filter:blur(10px);
    transition:.3s ease;
}

.footer-social a:hover{
    transform:
    translateY(-5px);
    background:
    rgba(255,255,255,.20);
}

/* COPYRIGHT */
.footer-bottom{
    padding:30px;
    text-align:center;
    border-top:
    1px solid rgba(255,255,255,.15);
}

.footer-bottom p{
    font-size:14px;
    opacity:.8;
}

/* RESPONSIVE */
@media(max-width:1600px){
    .contact-grid{
        grid-template-columns: repeat(4,1fr);
    }
}

@media(max-width:1100px){

    .hero-content h1{
        font-size:52px;
    }
    .navbar{
        padding:20px;
    }
    .nav-center{
        display:none;
    }
    .services-grid{
        grid-template-columns: 
        repeat(2,1fr);
    }
}

@media (max-width:992px){
    .nav-center{
        display:none;
    }
    .social-icons{
        display:none;
    }
    .menu-toggle{
        display:block;
    }
}

@media (min-width:769px) and (max-width:1024px){
    .contact-section{
        padding:110px 40px;
    }
    .contact-grid{
        grid-template-columns:repeat(2,1fr);
        gap:28px;
    }
    .footer-content{
        justify-content:center;
        text-align:center;
        gap:45px;
    }
}

@media(max-width:768px){
    .hero{
        justify-content:flex-start;
        text-align:left;
        padding:140px 24px 80px;
        background-position: center;
    }
    .hero-content{
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-content h1{
        font-size:42px;
        line-height: 1.1;
        text-align: center;
    }
    .hero-content p{
        font-size:17px;
        text-align: center;
    }
    .hero-buttons{
        justify-content:center;
        flex-direction: column;
        width: 100%;
    }
    .hero-benefits{
        justify-content:center;
        gap: 18px;
    }
    .btn-primary,.btn-secondary{
        width: 100%;
    }
    .hero-rotating{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 8px;
        margin-top: 35px;
    }
    .static-text{
        font-size: 34px;
    }
    .rotating-text{
        font-size: 34px;
    }
    .services-grid{
        grid-template-columns:
        1fr;
    }
    .caracteristicas-section{
        padding:100px 25px;
    }
    .caracteristicas-section h2{
        font-size:38px;
    }
    .caracteristicas-section p{
        font-size:16px;
    }
    
    /* Sobre Nosotros */
    .about-section{
        padding: 90px 24px;
    }
    .about-container{
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-content{
        text-align: center;
        order: 1;
    }
    .section-tag{
        display: inline-flex;
        margin: auto;
    }
    .about-content h2{
        font-size: 36px;
        line-height: 1.2;
    }
    .about-content p{
        font-size: 17px;
    }
    .image-wrapper{
        max-width: 500px;
        margin: auto;
    }
    .about-features{
        order: 3;
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 40px;
    }
    .feature-card{
        display: flex;
        align-items: flex-start;
        gap: 18px;
        text-align: left;
        padding: 22px;
        border-radius: 18px;
    }
    .feature-icon{
        flex-shrink:0;
        width:60px;
        height:60px;
        display:flex;
        justify-content:center;
        align-items:center;
        font-size:28px;
        border-radius:50%;
        background:#f7f7f7;
    }
    .feature-text h3{
        margin: 0;
        font-size: 24px;
    }
    .feature-text p{
        margin-top: 8px;
        font-size: 15px;
        line-height: 1.6;
    }

    /* Servicios */
    .services-section{
        padding:90px 24px;
    }
    .services-header{
        margin-bottom:50px;
    }
    .services-header h2{
        font-size:34px;
        line-height:1.25;
    }
    .services-header p{
        font-size:17px;
    }
    .services-grid{
        grid-template-columns:1fr;
        gap:24px;
    }
    .service-card{
        border-radius:24px;
    }
    .service-image{
        height:200px;
    }
    .service-content{
        padding:24px;
    }
    .service-content h3{
        font-size:22px;
    }
    .service-content p{
        font-size:16px;
    }

    /* POR QUE ELEGIRNOS */
    .caracteristicas-section{
        padding:90px 24px;
    }
    .caracteristicas-container h2{
        font-size:34px;
        line-height:1.25;
    }
    .caracteristicas-container p{
        font-size:17px;
    }
    .features-wrapper{
        margin-top:50px;
        gap:50px;
    }
    .features-row{
        grid-template-columns:repeat(2fr);
        gap:35px 25px;
    }
    .features-row::before{
        display:none;
    }
    .feature-icon{
        width:68px;
        height:68px;
        font-size:28px;
    }
    .feature-item h3{
        font-size:20px;
    }
    .feature-item p{
        font-size:15px;
        line-height:1.6;
    }

    /* Seccion Contacto*/
    .contact-section{
        padding:90px 24px;
    }
    .contact-header{
        margin-bottom:50px;
    }
    .contact-header h2{
        font-size:34px;
        line-height:1.25;
    }
    .contact-header p{
        font-size:17px;
        line-height:1.7;
    }
    .contact-grid{
        grid-template-columns:1fr;
        gap:22px;
    }
    .contact-card{
        padding:36px 28px;
        border-radius:24px;
    }
    .contact-card i{
        font-size:48px;
        margin-bottom:20px;
    }
    .contact-card h3{
        font-size:24px;
    }
    .contact-card p{
        font-size:15px;    
        line-height:1.6;
    }

    /* Footer */
    .footer-cta{
        padding:90px 24px;
    }
    .footer-cta h2{
        font-size:38px;
        line-height:1.2;
    }
    .footer-cta p{
        font-size:17px;
    }
    .footer-cta-btn{
        width:100%;
        max-width:340px;
        padding:18px 24px;
    }
    .footer-content{
        padding:50px 24px;
        flex-direction:column;
        justify-content:center;    
        align-items:center;
        text-align:center;
        gap:35px;
    }
    .footer-logo img{
        width:160px;
    }
    .footer-nav{
        flex-direction:column;
        gap:18px;
        align-items:center;
    }
    .footer-social{
        justify-content:center;
        flex-wrap:wrap;
    }
    .footer-bottom{
        padding:24px;
    } 
    .footer-bottom p{
        font-size:13px;    
    }
}


@media(max-width:500px){

    .signup-btn{
        padding:12px 20px;
        font-size:14px;
    }

    .logo{
        font-size:18px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:14px;
    }
}

@media (max-width:480px){
    .features-row{
        grid-template-columns:1fr;
    }
}

@media(max-width:1000px){

    .about-container{

        grid-template-columns:1fr;
    }

    .about-content{

        text-align:center;
    }

    .about-features{

        grid-template-columns:1fr;
    }

    .about-content h2{

        font-size:38px;
    }
}

/* RESPONSIVE FOOTER*/
@media(max-width:900px){
    .footer-content{
        flex-direction:column;
        text-align:center;
    }
    .footer-cta h2{
        font-size:42px;
    }
    .footer-nav{
        justify-content:center;
    }
}

/* KEYFRAMES */

@keyframes float {
    0%{
        transform:translateY(0px) rotate(-45deg);
    }
    50%{
        transform:translateY(-20px) rotate(-45deg);
    }
    100%{
        transform:translateY(0px) rotate(-45deg);
    }
}

@keyframes glow {
    0%{
        box-shadow:
        0 0 10px rgba(255,255,255,0.1);
    }
    50%{
        box-shadow:
        0 0 30px rgba(255,255,255,0.35);
    }
    100%{
        box-shadow:
        0 0 10px rgba(255,255,255,0.1);
    }
}

@keyframes fadeUp {
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes pulseGlow{
    0%{
        transform:translate(-50%,-50%) scale(1);
    }
    50%{
        transform:translate(-50%,-50%) scale(1.2);
    }
    100%{
        transform:translate(-50%,-50%) scale(1);
    }
}

/* ROTACION PARA HERO */
@keyframes floatShape{
    0%{
        transform:
        rotate(0deg)
        translateY(0);
    }
    50%{
        transform:
        rotate(5deg)
        translateY(-10px);
    }
    100%{
        transform:
        rotate(0deg)
        translateY(0);
    }
}

/* =========================
   BLUR REVEAL ANIMATION
========================= */