/* ========================= */
/* RESET */
/* ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ========================= */
/* BODY */
/* ========================= */

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#0f172a;
    overflow-x:hidden;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

nav{
    width:100%;
    height:100px;
    background:linear-gradient(135deg,#008cff,#0066ff,#9be000);
    background-size:300% 300%;
    animation:navbarGradient 10s ease infinite;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 80px;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    box-shadow:0 10px 30px rgba(0,140,255,.25);
    border-radius: 0 0 30px 30px;
}

@keyframes navbarGradient{
    0%{ background-position:0% 50%; }
    50%{ background-position:100% 50%; }
    100%{ background-position:0% 50%; }
}

.logo img{
    width:380px;
    transition:.1s;
    cursor:pointer;
    animation:logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse{
    0%{ transform:scale(1); }
    50%{ transform:scale(1.06); }
    100%{ transform:scale(1); }
}

.logo img:hover{
    transform:scale(1.05);
}

nav ul{
    display:flex;
    gap:45px;
    list-style:none;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    position:relative;
    transition:.4s;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:3px;
    background:white;
    border-radius:10px;
    transition:.4s;
}

nav ul li a:hover{ color:#ffffff; }
nav ul li a:hover::after{ width:100%; }
.activo{ color:#ffffff; }

/* ========================= */
/* HERO INDEX */
/* ========================= */

.hero{
    min-height:40vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px 20px 100px;
    position:relative;
    overflow:hidden;
    background:white;
}

.hero::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,rgba(0,140,255,.10),transparent 70%);
    top:-250px;
    right:-200px;
    z-index:0;
}

.hero-content{
    max-width:950px;
    position:relative;
    z-index:2;
}

.hero-content span{
    display:inline-block;
    margin-bottom:25px;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(0,140,255,.08);
    color:#008cff;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
}

.hero-content h1{
    font-size:82px;
    line-height:1.1;
    font-weight:800;
    color:#0f172a;
    margin-bottom:30px;
}

.hero-content p{
    font-size:24px;
    line-height:1.8;
    color:#475569;
    max-width:850px;
    margin:auto auto 45px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    padding:18px 40px;
    border:none;
    border-radius:60px;
    background:linear-gradient(135deg,#008cff,#00bfff);
    color:white;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,140,255,.25);
    /*animation: flotar 1s ease-in-out infinite;*/
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(0,140,255,.35);
}

.btn-secondary{
    padding:18px 40px;
    border:2px solid #008cff;
    border-radius:60px;
    background:white;
    color:#008cff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
    /*animation: flotar 1s ease-in-out infinite;*/
    animation-delay: 0.5s;
}

.btn-secondary:hover{
    background:#008cff;
    color:white;
}

/* ========================= */
/* CARRUSEL INDEX */
/* ========================= */

.carrusel{
    width:100%;
    padding-top:220px;
    overflow:hidden;
    position:relative;
    background:white;
}

.carrusel h2{
    text-align:center;
    font-size:58px;
    margin-bottom:70px;
    color:#0f172a;
}

.slider-container{
    width:100%;
    overflow:hidden;
    position:relative;
}

.slider-track{
    display:flex;
    gap:35px;
    padding:20px 40px;
    transition:transform .8s cubic-bezier(0.22,1,0.36,1);
}

.tarjeta{
    width:380px;
    min-width:380px;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    overflow:hidden;
    position:relative;
    transition:.5s;
    box-shadow:0 20px 45px rgba(0,0,0,.25);
}

.tarjeta::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,transparent,rgba(255,255,255,.08),transparent);
    transform:translateX(-100%);
    transition:1s;
}

.tarjeta:hover::before{ transform:translateX(100%); }
.tarjeta:hover{ transform:translateY(-14px); box-shadow:0 25px 50px rgba(0,140,255,.22); }

.tarjeta img{
    width:100%;
    height:230px;
    object-fit:contain;
    transition:1s;
    background: #0a0f1e;
}

.tarjeta:hover img{ transform:scale(1.08); }

.info{ padding:28px; }
.info h3{ font-size:28px; color:#0f172a; margin-bottom:15px; }
.info p{ color:#475569; line-height:1.7; margin-bottom:25px; }

.indicadores{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-top:40px;
}

.dot{
    width:14px;
    height:14px;
    border-radius:50px;
    background:#cbd5e1;
    cursor:pointer;
    transition:.4s;
    opacity:.9;
}

.dot.active{
    width:45px;
    background:#008cff;
    box-shadow:0 0 20px rgba(0,140,255,.45);
}

/* ========================= */
/* INFRAESTRUCTURA */
/* ========================= */

.infraestructura{
    width:100%;
    padding:40px 8% 140px;
    display:flex;
    justify-content:space-between;
    gap:80px;
    flex-wrap:wrap;
    background:white;
}

.infra-left{ flex:1; min-width:320px; }
.infra-left span{ color:#008cff; font-size:14px; letter-spacing:3px; font-weight:600; }
.infra-left h2{ font-size:62px; line-height:1.15; color:#0f172a; margin:25px 0; }
.infra-left p{ font-size:20px; line-height:1.8; color:#475569; max-width:650px; }

.infra-right{
    flex:1;
    min-width:320px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.infra-card{
    padding:35px;
    border-radius:28px;
    background:linear-gradient(135deg,#f8fbff,#eef6ff);
    border:1px solid #dbeafe;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.infra-card::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:radial-gradient(circle,rgba(0,140,255,.15),transparent 70%);
    top:-40px;
    right:-40px;
}

.infra-card:hover{ transform:translateY(-8px); box-shadow:0 20px 40px rgba(0,140,255,.12); }
.infra-card h3{ font-size:28px; color:#008cff; margin-bottom:15px; position:relative; z-index:2; }
.infra-card p{ color:#64748b; font-size:17px; line-height:1.7; position:relative; z-index:2; }

/* ========================= */
/* VISION */
/* ========================= */

.vision{
    width:100%;
    padding:10px 8% 40px;
    background:linear-gradient(to bottom,#ffffff,#f8fbff);
    position:relative;
    overflow:hidden;
}

.vision::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,rgba(0,140,255,.08),transparent 70%);
    top:-300px;
    left:-250px;
}

.vision-content{ max-width:1100px; margin:auto; text-align:center; position:relative; z-index:2; }
.vision-content span{ display:inline-block; margin-bottom:30px; padding:10px 22px; border-radius:50px; background:rgba(0,140,255,.08); color:#008cff; font-size:14px; font-weight:600; letter-spacing:3px; }
.vision-content h2{ font-size:68px; line-height:1.2; color:#0f172a; margin-bottom:35px; font-weight:800; }
.vision-content p{ font-size:22px; line-height:1.9; color:#475569; max-width:950px; margin:auto; }

/* ========================= */
/* REVEAL ANIMATIONS */
/* ========================= */

.reveal-right{
    opacity:0;
    transform:translateX(120px);
    transition:all 1s cubic-bezier(0.22,1,0.36,1);
}

.reveal-right.active{ opacity:1; transform:translateX(0); }
.reveal-right:nth-child(1){ transition-delay:.1s; }
.reveal-right:nth-child(2){ transition-delay:.3s; }
.reveal-right:nth-child(3){ transition-delay:.5s; }

.reveal-up{
    opacity:0;
    transform:translateY(40px);
    transition:opacity 0.6s ease,transform 0.6s ease;
}

.reveal-up.active{ opacity:1; transform:translateY(0); }

.reveal-left{
    opacity:0;
    transform:translateX(-120px);
    transition:all 1s cubic-bezier(0.22,1,0.36,1);
}

.reveal-left.active{ opacity:1; transform:translateX(0); }

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{
    width:100%;
    background:linear-gradient(135deg,  #0f2340, #1a3558);
    padding:20px 4% 10px;
    margin-top:120px;
    position:relative;
    overflow:hidden;
}

.footer::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,rgba(0,140,255,.15),transparent 70%);
    top:-200px;
    right:-200px;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    gap:80px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
    padding:0;
}

.footer-brand,.footer-contacto,.footer-ubicacion{ flex:1; min-width:260px; }
.footer-brand img{ width:420px; margin-bottom:25px; }
.footer-brand p,.footer-contacto p,.footer-ubicacion p{ color:#cbd5e1; line-height:1.8; font-size:17px; }
.footer-contacto h3,.footer-ubicacion h3{ color:white; font-size:26px; margin-bottom:25px; }

.social-links{ display:flex; flex-direction:column; gap:15px; margin-bottom:25px; }
.social-links a{ color:#9be000; text-decoration:none; font-size:17px; transition:.4s; }
.social-links a:hover{ transform:translateX(8px); color:white; }

.footer-bottom{
    margin-top:70px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    position:relative;
    z-index:2;
}

.footer-bottom p{ color:#94a3b8; font-size:15px; }

.mapa{
    margin-top:25px;
    width:100%;
    height:260px;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.mapa iframe{
    width:100%;
    height:100%;
    border:none;
    filter:grayscale(10%) contrast(1.05) brightness(.95);
}

.footer-mapa{
    width:100%;
    height:180px;
    border-radius:16px;
    overflow:hidden;
    margin-top:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.20);
}

.footer-mapa iframe{ width:100%; height:100%; border:none; }

/* ========================= */
/* QUIENES SOMOS */
/* ========================= */

.about-hero{
    min-height:30vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:90px 20px 20px;
    background:white;
    position:relative;
    overflow:hidden;
}

.about-hero::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,rgba(0,140,255,.10),transparent 70%);
    top:-300px;
    right:-200px;
}

.about-hero-content{ max-width:1000px; position:relative; z-index:2; }
.about-hero-content span{ color:#008cff; font-size:30px; letter-spacing:3px; font-weight:600; }
.about-hero-content h1{ font-size:78px; line-height:1.1; color:#0f172a; margin:30px 0; }
.about-hero-content p{ font-size:22px; color:#475569; line-height:1.8; }

.historia{
    width:100%;
    padding:120px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    flex-wrap:wrap;
}

.historia-left{ flex:1; min-width:320px; }
.historia-left span{ color:#008cff; font-size:14px; letter-spacing:3px; font-weight:600; }
.historia-left h2{ font-size:58px; line-height:1.2; margin:25px 0; color:#0f172a; }
.historia-left p{ font-size:19px; line-height:1.9; color:#475569; margin-bottom:20px; }

.historia-right{ flex:1; min-width:320px; position:relative; }
.historia-right img{ width:80%; border-radius:30px; box-shadow:0 25px 60px rgba(0,0,0,.15); }

.valores{
    width:100%;
    padding:80px 8% 140px;
    display:flex;
    flex-direction:row;
    gap:30px;
    flex-wrap:wrap;
    justify-content: flex-start;
    
}

.valor-card{
    width:340px;
    padding:40px;
    border-radius:28px;
    background:linear-gradient(135deg,#f8fbff,#eef6ff);
    border:1px solid #dbeafe;
    transition:.4s;
}

.valor-card:hover{ transform:translateY(-10px); box-shadow:0 20px 40px rgba(0,140,255,.10); }
.valor-card h3{ font-size:30px; color:#008cff; margin-bottom:15px; }
.valor-card p{ color:#64748b; line-height:1.8; font-size:17px; }

/* ========================= */
/* CARRUSEL INFO QUIENES SOMOS */
/* ========================= */

.info-carrusel{
    width:80%;
    padding: 15px 60px 10px;
    background:linear-gradient(135deg,#f0f7ff,#ffffff);
    position:relative;
    max-width:850px ;
    margin:120px auto 0;
    border-radius:30px;
}

.info-slider{
    position:relative;
    min-height:auto;
    display:flex;
    align-items:center;
}

.info-slide{ display:none; animation:fadeSlide .5s ease; width:100%; }
.info-slide.active{ display:flex; justify-content:center; align-items:center;   }

@keyframes fadeSlide{
    from{ opacity:0; transform:translateY(20px); }
    to{ opacity:1; transform:translateY(0); }
}

.info-slide img{
    width: 100%;
    max-width: 100px;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}

.slide-layout{ display:flex; align-items:center; gap:50px; width:100%; }

.slide-layout img{
    width:350px;
    min-width:350px;
    height:auto;
    border-radius:20px;
}

.slide-texto{ flex:1; }
.slide-texto span{ color:#008cff; font-size:13px; letter-spacing:4px; font-weight:700; }
.slide-texto h2{ font-size:28px; font-weight:800; color:#0f172a; margin:10px 0; line-height:1.2; }
.slide-texto p{
    font-size:16px;
    color:#475569;
    line-height:1.8;
    margin-bottom:25px;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.btn-leer-mas{
    padding:14px 30px;
    background:linear-gradient(135deg,#008cff,#0066ff);
    color:white;
    border:none;
    border-radius:14px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
}

.btn-leer-mas:hover{ transform:translateY(-4px); box-shadow:0 15px 35px rgba(0,140,255,.35); }

.info-dots{
    display:flex;
    gap:12px;
    justify-content:center;
    margin-top:20px;
}

.info-dot{ width:12px; height:12px; border-radius:50%; background:#cbd5e1; cursor:pointer; transition:.4s; }
.info-dot.active{ width:40px; background:#008cff; border-radius:10px; }

.flecha-izq,.flecha-der{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(255,255,255,.8);
    border:none;
    width:45px;
    height:45px;
    border-radius:50%;
    font-size:18px;
    cursor:pointer;
    color:#008cff;
    z-index:10;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.10);
    display:flex;
    align-items:center;
    justify-content:center;
}

.flecha-izq{ left:-22px; }
.flecha-der{ right:-22px; }
.flecha-izq:hover,.flecha-der:hover{ background:#008cff; color:white; transform:translateY(-50%) scale(1.1); }

/* ========================= */
/* MODAL */
/* ========================= */

.info-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    z-index:9999;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.info-modal.abierto{ display:flex; }

.info-modal-content{
    background:white;
    border-radius:30px;
    padding:60px;
    max-width:800px;
    width:100%;
    position:relative;
    animation:fadeSlide .4s ease;
    max-height:80vh;
    overflow-y:auto;
}

.modal-cerrar{ position:absolute; top:20px; right:25px; background:none; border:none; font-size:24px; cursor:pointer; color:#64748b; transition:.3s; }
.modal-cerrar:hover{ color:#ef4444; transform:scale(1.2); }
#modalSpan{ color:#008cff; font-size:13px; letter-spacing:4px; font-weight:700; }
#modalTitulo{ font-size:42px; font-weight:800; color:#0f172a; margin:20px 0 25px; line-height:1.2; }
#modalTexto{ font-size:18px; color:#475569; line-height:1.9; }

/* ========================= */
/* SERVICIOS */
/* ========================= */

.services-hero{
    min-height:70vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:140px 20px 80px;
    position:relative;
    overflow:hidden;
}

.services-hero::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,rgba(0,140,255,.10),transparent 70%);
    top:-250px;
    right:-250px;
}

.services-hero-content{ max-width:1000px; position:relative; z-index:2; }
.services-hero-content span{ color:#008cff; font-size:14px; letter-spacing:3px; font-weight:600; }
.services-hero-content h1{ font-size:78px; line-height:1.1; color:#0f172a; margin:30px 0; }
.services-hero-content p{ font-size:22px; line-height:1.8; color:#475569; }

.services-grid{
    width:100%;
    padding:80px 8% 140px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    align-items:stretch;
}

.service-card{
    border-radius:30px;
    background:linear-gradient(135deg,#f8fbff,#eef6ff);
    border:1px solid #dbeafe;
    transition:.5s;
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

.service-card::before{
    content:"";
    position:absolute;
    width:160px;
    height:160px;
    background:radial-gradient(circle,rgba(0,140,255,.12),transparent 70%);
    top:-60px;
    right:-60px;
}

.service-card:hover{ transform:translateY(-10px); box-shadow:0 25px 50px rgba(0,140,255,.10); }

.service-card img{
    width: 100%;
    height: 350px;
    object-fit: contain;
    border-radius: 20px 20px 0 0;
    background: #0a0f1e;
   
   
}

.service-card-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.service-card-content h3{ font-size:32px; color:#008cff; margin-bottom:20px; position:relative; z-index:2; text-align:center; }
.service-card-content p{ font-size:18px; line-height:1.8; color:#64748b; position:relative; z-index:2; flex:1; }

.service-icon{ font-size:50px; margin-bottom:30px; }

.btn-planes{
    display:block;
    width:fit-content;
    margin:18px auto 0;
    padding:14px 30px;
    background:linear-gradient(135deg,#008cff,#0066ff);
    color:white;
    text-decoration:none;
    border-radius:14px;
    font-weight:600;
    font-size:16px;
    transition:.4s;
    animation:pulsarBoton 1s ease-in-out infinite;
}

.btn-planes:hover{ box-shadow:0 15px 35px rgba(0,140,255,.35); }

@keyframes pulsarBoton{
    0%{ transform:translateX(0); }
    50%{ transform:translateX(12px); }
    100%{ transform:translateX(0); }
}

.service-banner{
    width:100%;
    padding:140px 8%;
    background:linear-gradient(135deg,#008cff,#0066ff);
    text-align:center;
    position:relative;
    overflow:hidden;
}

.service-banner::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,rgba(255,255,255,.10),transparent 70%);
    top:-250px;
    left:-250px;
}

.banner-content{ position:relative; z-index:2; max-width:1000px; margin:auto; }
.banner-content span{ color:#9be000; font-size:14px; letter-spacing:3px; font-weight:600; }
.banner-content h2{ font-size:62px; line-height:1.2; color:white; margin:30px 0; }
.banner-content p{ font-size:22px; line-height:1.8; color:#dbeafe; }

/* ========================= */
/* PLANES */
/* ========================= */

.planes-hero{
    min-height:50vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:140px 20px 80px;
    background:linear-gradient(135deg,#f0f7ff,#e8f4ff);
}

.planes-hero-content span{ color:#008cff; font-size:14px; letter-spacing:3px; font-weight:600; }
.planes-hero-content h1{ font-size:72px; font-weight:800; color:#0f172a; margin:20px 0; }
.planes-hero-content p{ font-size:22px; color:#475569; }

.planes-grid{
    padding:100px 8%;
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.plan-card{
    width:320px;
    border-radius:30px;
    background:white;
    border:1px solid #e2e8f0;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.plan-card:hover{ transform:translateY(-12px); box-shadow:0 25px 50px rgba(0,140,255,.15); }
.plan-card.destacado{ border:2px solid #008cff; }
.plan-card.destacado:hover{ transform:scale(1.05) translateY(-12px); }

.plan-badge{ background:linear-gradient(135deg,#008cff,#0066ff); color:white; text-align:center; padding:10px; font-weight:600; font-size:14px; letter-spacing:1px; }
.plan-header{ padding:35px 35px 20px; text-align:center; }
.plan-header h3{ font-size:28px; color:#0f172a; margin-bottom:15px; }
.plan-precio{ display:flex; align-items:baseline; justify-content:center; gap:5px; }
.precio{ font-size:48px; font-weight:800; color:#008cff; }
.mes{ font-size:18px; color:#64748b; }
.plan-body{ padding:0 35px 35px; }
.plan-body ul{ list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:30px; }
.plan-body ul li{ color:#475569; font-size:16px; }

.btn-plan{
    display:block;
    width:100%;
    padding:16px;
    background:linear-gradient(135deg,#008cff,#0066ff);
    color:white;
    text-decoration:none;
    border-radius:14px;
    font-weight:600;
    font-size:16px;
    text-align:center;
    transition:.4s;
    white-space: nowrap;
    animation: pulsarBoton 1s ease-in-out infinite;
}

.btn-plan:hover{ transform:translateY(-3px); box-shadow:0 15px 35px rgba(0,140,255,.35); }

/* ========================= */
/* COBERTURA */
/* ========================= */

.coverage-hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:120px 8%;
}

.coverage-hero-img{ flex:1; }
.coverage-hero-img img{ width:100%; max-width:750px; border-radius:25px; box-shadow:0 20px 50px rgba(0,0,0,0.15); }

.coverage-hero-content{ flex:1; max-width:600px; }
.coverage-hero-content span{ color:#008cff; font-size:14px; letter-spacing:4px; font-weight:700; }
.coverage-hero-content h1{ font-size:58px; line-height:1.1; color:#0f172a; margin:20px 0; }
.coverage-hero-content p{ font-size:22px; line-height:1.8; color:#475569; }

.coverage-btn{
    display:inline-block;
    padding:16px 35px;
    background:linear-gradient(135deg,#008cff,#0066ff);
    color:white;
    text-decoration:none;
    border-radius:14px;
    font-weight:600;
    font-size:17px;
    margin-top:30px;
    transition:.4s;
    animation:pulsarBoton 1s ease-in-out infinite;
}

.coverage-btn:hover{ transform:translateY(-4px); box-shadow:0 15px 35px rgba(0,140,255,.35); }

.mapa-container{ position:relative; display:inline-block; }

.pulse{
    position:absolute;
    width:14px;
    height:14px;
    background:#57ff57;
    border-radius:50%;
    box-shadow:0 0 20px #57ff57;
    animation:pulseAnim 2s infinite;
}

.punto1{ top:55%; left:37%; }
.punto3{ top:68%; left:48%; }

.signal{
    position:absolute;
    top:52.5%;
    left:43.5%;
    width:45px;
    height:45px;
    border:3px solid #57ff57;
    border-radius:50%;
    animation:expand 1.5s infinite;
}

.signal2{
    position:absolute;
    top:36%;
    left:58%;
    width:45px;
    height:45px;
    border:3px solid #00bfff;
    border-radius:50%;
    animation:expand2 1.9s infinite;
}

@keyframes pulseAnim{
    0%{ transform:scale(1); opacity:1; }
    50%{ transform:scale(1.4); opacity:0.7; }
    100%{ transform:scale(1); opacity:1; }
}

@keyframes expand{
    0%{ transform:scale(0.5); opacity:1; }
    100%{ transform:scale(3); opacity:0; }
}

@keyframes expand2{
    0%{ transform:scale(0.5); opacity:1; }
    100%{ transform:scale(4); opacity:0; }
}

.coverage-map{ width:100%; padding:80px 8% 140px; }
.map-content{ text-align:center; max-width:900px; margin:auto auto 70px; }
.map-content span{ color:#008cff; font-size:14px; letter-spacing:3px; font-weight:600; }
.map-content h2{ font-size:62px; color:#0f172a; margin:25px 0; }
.map-content p{ font-size:21px; line-height:1.8; color:#475569; }

.map-box{ width:100%; height:550px; border-radius:35px; overflow:hidden; box-shadow:0 25px 60px rgba(0,0,0,.12); }
.map-box iframe{ width:100%; height:100%; border:none; }

.zonas{
    width:100%;
    padding:0 8% 140px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.zona-card{ padding:45px; border-radius:30px; background:linear-gradient(135deg,#f8fbff,#eef6ff); border:1px solid #dbeafe; transition:.4s; }
.zona-card:hover{ transform:translateY(-10px); box-shadow:0 25px 50px rgba(0,140,255,.10); }
.zona-card h3{ font-size:32px; color:#008cff; margin-bottom:18px; }
.zona-card p{ font-size:18px; line-height:1.8; color:#64748b; }

.coverage-stats{ display:flex; justify-content:center; gap:30px; padding:80px 10%; }
.stat-box{ background:#0d6efd; color:white; padding:40px; border-radius:25px; width:240px; text-align:center; transition:0.4s; box-shadow:0 15px 35px rgba(0,0,0,0.12); }
.stat-box:hover{ transform:translateY(-10px); }
.stat-box h3{ font-size:48px; margin-bottom:10px; }
.stat-box p{ font-size:18px; }

.coverage-banner{
    width:100%;
    padding:140px 8%;
    background:linear-gradient(135deg,#008cff,#0066ff);
    text-align:center;
    position:relative;
    overflow:hidden;
}

.coverage-banner::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,rgba(255,255,255,.10),transparent 70%);
    top:-250px;
    right:-250px;
}

.coverage-banner-content{ position:relative; z-index:2; max-width:1000px; margin:auto; }
.coverage-banner-content span{ color:#9be000; font-size:14px; letter-spacing:3px; font-weight:600; }
.coverage-banner-content h2{ font-size:62px; line-height:1.2; color:white; margin-top:30px; }

/* ========================= */
/* CONTACTO */
/* ========================= */

.contact-section{
    min-height:100vh;
    padding:140px 8% 100px;
    display:flex;
    align-items:center;
    gap:80px;
    background:linear-gradient(135deg,#f0f7ff,#ffffff);
    flex-wrap:wrap;
}

.contact-mensaje{ display:flex; flex-direction:column; justify-content:center; height:100%; padding:20px; flex:1; min-width:320px; }
.contact-mensaje span{ color:#008cff; font-size:13px; letter-spacing:4px; font-weight:700; text-transform:uppercase; }
.contact-mensaje h1{ font-size:58px; font-weight:800; color:#0f172a; line-height:1.15; margin:20px 0 25px; }
.contact-mensaje p{ font-size:18px; color:#475569; line-height:1.8; margin-bottom:15px; max-width:480px; }

.contact-info{ flex:1; min-width:320px; display:flex; flex-direction:column; gap:25px; }

.contact-form{
    background:white;
    border-radius:30px;
    padding:50px;
    box-shadow:0 25px 60px rgba(0,140,255,.10);
    border:1px solid #dbeafe;
    flex:1;
    min-width:320px;
}

.contact-form h2{ font-size:36px; color:#0f172a; margin-bottom:30px; font-weight:700; }
.contact-form form{ display:flex; flex-direction:column; gap:20px; }

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px 22px;
    border-radius:18px;
    border:1.5px solid #dbeafe;
    font-size:16px;
    outline:none;
    font-family:'Poppins',sans-serif;
    background:#f8fbff;
    transition:.3s;
}

.contact-form textarea{ min-height:180px; resize:none; }

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#008cff;
    background:white;
    box-shadow:0 0 0 4px rgba(0,140,255,.08);
}

.contact-form button{
    padding:18px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,#008cff,#0066ff);
    color:white;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
}

.contact-form button:hover{ transform:translateY(-4px); }

.campo-error{
    border:2px solid #ef4444 !important;
    background:#fff5f5 !important;
    box-shadow:0 0 0 4px rgba(239,68,68,.10) !important;
}

.contact-map{ width:100%; height:550px; padding:0 8% 140px; }
.contact-map iframe{ width:100%; height:100%; border:none; border-radius:35px; box-shadow:0 25px 60px rgba(0,0,0,.12); }

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:900px){
    nav{ padding:0 20px; }
    nav ul{ display:none; }
    .logo img{ width:320px; }
    .hero-content h1{ font-size:58px; }
    .hero-content p{ font-size:20px; }
    .carrusel h2{ font-size:40px; }
    .tarjeta{ width:300px; min-width:300px; }
    .infraestructura{ flex-direction:column; }
    .infra-left h2{ font-size:46px; }
    .vision-content h2{ font-size:48px; }
    .about-hero-content h1{ font-size:52px; }
    .historia{ flex-direction:column; }
    .historia-left h2{ font-size:42px; }
    .services-hero-content h1{ font-size:52px; }
    .banner-content h2{ font-size:44px; }
    .coverage-hero{ flex-direction:column; text-align:center; }
    .coverage-hero-img img{ width:100%; }
    .coverage-hero-content h1{ font-size:55px; }
    .map-content h2{ font-size:46px; }
    .coverage-banner-content h2{ font-size:42px; }
    .contact-hero-content h1{ font-size:52px; }
    .contact-section{ flex-direction:column; }
    .footer-container{ flex-direction:column; gap:50px; }
}

@media(max-width:600px){
    .hero-content h1{ font-size:42px; }
    .hero-content p{ font-size:18px; }
    .hero-buttons{ flex-direction:column; }
    .btn-primary,.btn-secondary{ width:100%; }
    .tarjeta{ width:260px; min-width:260px; }
    .infraestructura{ padding:100px 20px; }
    .infra-left h2{ font-size:36px; }
    .vision{ padding:110px 20px; }
    .vision-content h2{ font-size:36px; }
    .vision-content p{ font-size:17px; }
    .about-hero{ padding:120px 20px 80px; }
    .about-hero-content h1{ font-size:38px; }
    .historia{ padding:100px 20px; }
    .valores{ padding:80px 20px 100px; }
    .services-hero{ padding:120px 20px 80px; }
    .services-hero-content h1{ font-size:38px; }
    .service-banner{ padding:100px 20px; }
    .banner-content h2{ font-size:34px; }
    .coverage-hero{ padding:120px 20px 80px; }
    .coverage-hero-content h1{ font-size:38px; }
    .map-box{ height:400px; }
    .coverage-banner{ padding:100px 20px; }
    .coverage-banner-content h2{ font-size:32px; }
    .contact-section{ padding:80px 20px 100px; }
    .contact-map{ height:400px; padding:0 20px 100px; }
    .footer{ padding:80px 20px 30px; }
    .footer-brand img{ width:180px; }
    .planes-hero-content h1{ font-size:48px; }
}

.img-carrusel{
    width: 100%;
    min-width: 700px;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}

/* IMAGENES VALORES QUIENES SOMOS */
.valores-imagen{
    width: 250px;
    height: auto;
    border-radius: 20px;
    animation: flotar 3s ease-in-out infinite;
    transition: .4s;
    cursor: pointer;
    background: transparent;
    box-shadow: 0 0 20px rgba(0,140,255,.4);
    
}
.valores-imagen:hover{
    transform: scale(1.08);
    box-shadow: 0 25px 50px rgba(0,140,255,.25);
    filter: brightness(1.1);
}

@keyframes flotar{
    0%  { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100%{ transform: translateY(0); }
}
.reveal-left{
    opacity: 0;
    transform: translateX(-150px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    /*margin-left: 8%;*/
    width: fit-content;
}

.reveal-left.active{
    opacity: 1;
    transform: translateX(0);
}

.valores-imagenes{
    width: 100%;
    padding: 80px 8%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-buttons .reveal-up{
    animation: flotar 1s ease-in-out infinite;
}

.hero-buttons .reveal-up:nth-child(2){
    animation-delay: 0.5s;
}



.plan-card.destacado .btn-plan{
    font-size: 13px;
    padding: 16px 10px;
}




/* ========================= */
/* SPEEDTEST */
/* ========================= */

.speedtest-section{
    width: 100%;
    padding: 140px 8% 100px;
    background: linear-gradient(135deg, #f0f7ff, #ffffff);
}

.speedtest-content{
    text-align: center;
    margin-bottom: 50px;
}

.speedtest-content span{
    color: #008cff;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 700;
}

.speedtest-content h2{
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin: 20px 0;
}

.speedtest-content p{
    font-size: 20px;
    color: #475569;
}

.speedtest-box{
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,140,255,.15);
}



/* ========================= */
/* BOTON FLOTANTE SPEEDTEST */
/* ========================= */

.btn-speedtest img{ /*tamaño de la imagen dentro del circulo*/
    width: 110px;
    height: 115px;
    object-fit: contain;
    border-radius: 70%;
    }

.btn-speedtest{ /* circulo mas grande*/
    position: absolute;
    right: 20px;
    top: 22%;
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    text-decoration: none;
    transition: 0.1s;
    z-index: 999;
    animation: flotar 1s ease-in-out infinite;
}




@media(max-width: 900px){
    .btn-speedtest{
        width: 45px;
        height: 45px;
        right: 10px;
        bottom: 20px;
        top: auto;
    }

    .btn-speedtest img{
        width: 28px;
        height: 28px;
    }
}

/* ========================= */
/* HAMBURGUESA */
/* ========================= */

.hamburguesa{
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburguesa span{
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: .4s;
}

@media(max-width: 900px){

    .hamburguesa{
        display: flex;
    }

    nav ul{
       display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 6cm;
        height: 100vh;
        background: linear-gradient(135deg, #008cff, #0066ff);
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,.3);
        border-radius: 20px 0 0 20px;
    }

    nav ul.activo{
        display: flex;
    }

    nav ul li a{
        font-size: 22px;
        font-weight: 600;
    }
}

@media(max-width: 900px){
    .hero-buttons{
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary{
        width: auto;
        padding: 14px 25px;
        font-size: 15px;
    }
}


/* FOOTER MOVIL */
@media(max-width: 900px){
    .footer-container{
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-brand,
    .footer-contacto,
    .footer-ubicacion{
        min-width: 45%;
        flex: 1;
    }
}

.carrusel-header{
    position: relative;
    text-align: center;
    padding: 0 8%;
    margin-bottom: 40px;
}

.carrusel-header h2{
    display: inline-block;
    font-size: 58px;
    color: #0f172a;
    margin-bottom: 0;
}

.mascota-carrusel{
     position: absolute;
    left: 8%;
    top: -80px;
    width: 180px;
    height: auto;
    /*animation: flotar 3s ease-in-out infinite;*/
  
}

.conoce-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.conoce-logo span{
    color: #008cff;
    font-size: 40px;
    letter-spacing: 3px;
    font-weight: 600;
}

.logo-titulo{
    width: 350px;
    height: auto;
}