*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#061122;
    color:#fff;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   HEADER
========================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(5,16,29,.95);
    backdrop-filter:blur(10px);
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:140px;
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:160px;
    width:auto;
    display:block;
    object-fit:contain;
}

/* MENU */

.nav-links{
    display:flex;
    align-items:center;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#0ea5ff;
}

.btn-whatsapp{
    background:#0ea5ff;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
    color:white;
    font-weight:600;

    display:flex;
    align-items:center;
    gap:8px;
}

.btn-whatsapp i{
    font-size:18px;
}

.btn-whatsapp:hover{
    transform:translateY(-2px);
}

.btn-instagram{
    background: linear-gradient(
        45deg,
        #f58529,
        #feda77,
        #dd2a7b,
        #8134af,
        #515bd4
    );

    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
    color:white;
    font-weight:600;

    display:flex;
    align-items:center;
    gap:8px;

    transition:all .3s ease;
}

.btn-instagram:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(221,42,123,.4);
}

.btn-instagram i{
    font-size:18px;
}
/* =========================
   HERO
========================= */

.hero{
    height:100vh;
    background:url('../images/hero-bg.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    position:relative;
    padding-top:100px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:650px;
}

.hero h1{
    font-size:4.5rem;
    font-weight:800;
    line-height:1.05;
    margin-bottom:20px;
}

.hero h1 span{
    color:#0ea5ff;
    display:block;
}

.hero p{
    font-size:1.15rem;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#0ea5ff;
    color:white;
    text-decoration:none;
    padding:16px 28px;
    border-radius:10px;
    font-weight:600;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.7);
    color:white;
    text-decoration:none;
    padding:16px 28px;
    border-radius:10px;
    font-weight:600;
}

/* =========================
   SECCIONES
========================= */

section{
    padding:90px 0;
}

section h2{
    text-align:center;
    font-size:2.3rem;
    margin-bottom:50px;
}

/* =========================
   SERVICIOS
========================= */

.services{
    background:#fff;
    color:#222;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.card{
    background:white;
    border-radius:15px;
    padding:35px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card i{
    font-size:42px;
    color:#0ea5ff;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

.card p{
    line-height:1.7;
}

/* =========================
   BENEFICIOS
========================= */

.benefits{
    background:#08172b;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.benefit-grid div{
    background:#0b1f38;
    padding:30px;
    border-radius:15px;
}

.benefit-grid h3{
    margin-bottom:15px;
    color:#0ea5ff;
}

.benefit-grid p{
    line-height:1.7;
}

/* =========================
   PLANES
========================= */

.plans{
    background:#f5f7fb;
    color:#222;
}

.plan-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.plan{
    background:white;
    border-radius:15px;
    padding:40px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.featured{
    border:3px solid #0ea5ff;
    transform:scale(1.03);
}

.plan h3{
    margin-bottom:15px;
}

.plan h4{
    font-size:2rem;
    color:#0ea5ff;
    margin-bottom:20px;
}

.plan ul{
    list-style:none;
}

.plan li{
    margin-bottom:12px;
}

/* =========================
   CONTACTO
========================= */

.contact{
    background:#061122;
}

form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

input,
textarea{
    padding:15px;
    border:none;
    border-radius:10px;
    font-size:1rem;
}

textarea{
    height:180px;
}

button{
    background:#0ea5ff;
    color:white;
    border:none;
    border-radius:10px;
    padding:15px;
    font-weight:600;
    cursor:pointer;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#020812;
    padding:50px 0;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
}

.footer-content h3{
    margin-bottom:10px;
}

.footer-content p{
    line-height:1.8;
}

/* =========================
   WHATSAPP
========================= */

.floating-whatsapp{
    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;
    text-decoration:none;
    font-size:32px;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    z-index:999;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .hero h1{
        font-size:3.2rem;
    }

    .nav-links{
        gap:20px;
    }

}

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .btn-whatsapp{
        display:none;
    }

    .logo img{
        height:85px;
        width:auto;
        max-width:none;
    }

    .nav-container{
        min-height:80px;
    }

    .hero{
        text-align:center;
        padding-top:120px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .hero p{
        font-size:1rem;
    }

    .hero-buttons{
        justify-content:center;
    }

    .featured{
        transform:none;
    }

    .footer-content{
        flex-direction:column;
        text-align:center;
    }
}

/* =========================
   MISION Y VISION
========================= */

.mission-vision{
    background:#f5f7fb;
    color:#222;
}

.mv-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.mv-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.mv-card:hover{
    transform:translateY(-8px);
}

.mv-icon{
    width:70px;
    height:70px;
    background:#0ea5ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.mv-icon i{
    color:white;
    font-size:30px;
}

.mv-card h3{
    font-size:1.8rem;
    margin-bottom:20px;
    color:#061122;
}

.mv-card p{
    line-height:1.9;
    color:#555;
}

@media(max-width:768px){

    .mv-grid{
        grid-template-columns:1fr;
    }

}
@media(max-width:768px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

}
/* =========================
   CLIENTES
========================= */

.clients{
    background:#ffffff;
    color:#222;
    overflow:hidden;
    padding:90px 0;
}

.clients h2{
    text-align:center;
    margin-bottom:15px;
}

.clients-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:50px;
}

.slider{
    position:relative;
    width:100%;
    overflow:hidden;
}

.slide-track{
    display:flex;
    width:calc(250px * 10);
    animation:scroll 25s linear infinite;
}

.slide{
    width:250px;
    height:120px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:20px;
}

.slide img{
    max-width:180px;
    max-height:90px;
    object-fit:contain;

    filter:grayscale(100%);
    opacity:.8;

    transition:.3s;
}

.slide img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.05);
}

@keyframes scroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-250px * 5));
    }

}
footer{
    background:#020812;
    padding:60px 0 20px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    flex-wrap:wrap;
}

.copyright{
    width:100%;
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#8aa0b8;
    font-size:.9rem;
}

/* =========================
   ESTADISTICAS
========================= */

.stats{
    background:#08172b;
    padding:80px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-card{
    text-align:center;
    padding:30px;
}

.stat-card h3{
    font-size:3rem;
    color:#0ea5ff;
    margin-bottom:10px;
}

.stat-card p{
    color:#fff;
    font-size:1rem;
}

/* =========================
   PARTNERS
========================= */

.partners{
    background:#ffffff;
    color:#222;
}

.partners-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    margin-top:40px;
}

.partners-grid div{
    padding:30px;
    border-radius:12px;
    text-align:center;
    font-weight:700;
    font-size:1.2rem;
    background:#f5f7fb;
    transition:.3s;
}

.partners-grid div:hover{
    background:#0ea5ff;
    color:white;
}

/* =========================
   SOBRE NOSOTROS
========================= */

.about-company{
    background:#08172b;
    color:white;
}

.about-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-content p{
    margin-bottom:25px;
    line-height:1.9;
    font-size:1.1rem;
}

.about-company strong{
    color:#0ea5ff;
}
