/* ================= VARIABLES ================= */

:root{
    --primary:#00D4C7;
    --secondary:#00AEEF;
    --blue:#2DD4FF;
    --dark:#061321;
    --dark2:#071827;
    --text:#c9d3df;
    --white:#FFFFFF;
}



/* ================= HEADER PREMIUM VIFFOR ================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:85px;
    padding:0 35px;
    background:#061321;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,.08);
    box-sizing:border-box;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}

.logo img{
    width:54px;
    height:54px;
    border-radius:50%;
    object-fit:cover;
}

.logo h1{
    font-size:22px;
    font-weight:900;
    white-space:nowrap;
    background:linear-gradient(90deg,#00D4C7,#00AEEF,#2DD4FF);
    background-clip:text;
    -webkit-background-clip:text;
    color:transparent;
    -webkit-text-fill-color:transparent;
}

.navbar nav{
    margin-left:auto;
    overflow:visible;
}

.nav-links{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:14px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-links li a{
    display:block;
    padding:8px 10px;
    color:#EAFBFF;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    border-radius:50px;
    white-space:nowrap;
    transition:.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active{
    background:linear-gradient(135deg,#00AEEF,#00D4C7);
    color:#061321;
}

.menu-btn{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#00D4C7;
    margin-left:18px;
}

/* Laptop pequeña: reducimos espacios para que sí quepa Contacto */
@media(max-width:1100px){

    .navbar{
        padding:0 22px;
    }

    .logo img{
        width:48px;
        height:48px;
    }

    .logo h1{
        font-size:19px;
    }

    .nav-links{
        gap:8px;
    }

    .nav-links li a{
        font-size:12px;
        padding:7px 7px;
    }
}

/* Celular y tablet: aparece hamburguesa */
@media(max-width:768px){

    .menu-btn{
        display:block;
    }

    .navbar nav{
        position:fixed;
        top:85px;
        right:-100%;
        width:280px;
        height:calc(100vh - 85px);
        background:#071827;
        transition:.4s ease;
        box-shadow:-10px 0 30px rgba(0,0,0,.35);
    }

    .nav-links{
        width:100%;
        height:100%;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;
        gap:18px;
        padding:30px;
    }

    .nav-links.active{
        right:0;
    }

    .navbar nav:has(.nav-links.active){
        right:0;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links li a{
        width:100%;
        font-size:16px;
        padding:12px 15px;
    }
}

@media(max-width:600px){

    .navbar{
        height:78px;
        padding:0 18px;
    }

    .logo img{
        width:48px;
        height:48px;
    }

    .logo h1{
        font-size:18px;
    }

    .navbar nav{
        top:78px;
        height:calc(100vh - 78px);
    }
}

/* ================= HERO ================= */

.hero{
    min-height:100vh;
    padding:150px 8% 90px;
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(
            90deg,
            rgba(6,19,41,.98) 0%,
            rgba(6,19,41,.86) 45%,
            rgba(6,19,41,.55) 100%
        ),
        url("img/AntenaFondo.jpeg");
    background-size:cover;
    background-position:center;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 75% 40%,rgba(0,212,199,.22),transparent 35%);
}

.hero-container{
    position:relative;
    z-index:2;
    max-width:1450px;
    margin:auto;
    display:grid;
    grid-template-columns:56% 44%;
    gap:25px;
    align-items:center;
}

.badge{
    display:inline-block;
    background:rgba(0,212,199,.12);
    color:#00D4C7;
    padding:10px 22px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:25px;
    border:1px solid rgba(0,212,199,.20);
}

.hero-content h1{
    font-family:'Poppins',sans-serif;
    font-size:100px;
    font-weight:900;
    line-height:.88;
    letter-spacing:-5px;
    margin-bottom:30px;
    color:#F5FFFF;
    text-transform:uppercase;
    text-shadow:0 10px 35px rgba(0,0,0,.42);
}

.hero-content h1 span{
    background:linear-gradient(90deg,#00D4C7,#00AEEF,#2DD4FF);
    background-clip:text;
    -webkit-background-clip:text;
    color:transparent;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    max-width:660px;
    font-size:17px;
    line-height:1.7;
    color:#c9d3df;
}

.hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:520px;
}

.hero-bg-shape{
    display:none;
}

.hero-main-img{
    width:100%;
    max-width:520px;
    aspect-ratio:4/3;
    object-fit:cover;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.20);
    box-shadow:0 30px 90px rgba(0,0,0,.50);
}

/* ================= BOTONES ================= */

.buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:30px;
    margin-bottom:28px;
}

.btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:50px;
    font-weight:800;
    transition:.3s;
    text-decoration:none;
}

.btn-primary{
    background:linear-gradient(135deg,#00D4C7,#00AEEF);
    color:#061329;
}

.btn-secondary{
    border:2px solid rgba(0,212,199,.8);
    color:#00D4C7;
}

.btn:hover{
    transform:translateY(-3px);
}

/* ================= ESTADÍSTICAS ================= */

.stats{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:nowrap;
    margin-top:25px;
}

.stat{
    width:125px;
    height:78px;
    padding:10px 8px;
    border-radius:14px;
    text-align:center;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    box-shadow:0 8px 20px rgba(0,0,0,.18);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.stat h2{
    font-size:24px;
    margin:0 0 5px;
    color:#00D4C7;
    font-weight:900;
}

.stat p{
    font-size:10px;
    margin:0;
    color:#EAFBFF;
}

/* ================= WHATSAPP FLOTANTE ================= */

.whatsapp-float{
    position:fixed;
    width:65px;
    height:65px;
    right:25px;
    bottom:25px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:34px;
    z-index:9999;
    box-shadow:0 10px 25px rgba(37,211,102,.35);
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}




/* ========================================
   COBERTURA VIFFOR 
======================================== */

.cobertura{
    padding:100px 8%;

    background:
    linear-gradient(
        rgba(2, 8, 23, 0.699),
        rgba(2, 8, 23, 0.473)
    ),
    url("img/earth-space.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

    color:#fff;
    position:relative;
    overflow:hidden;
}

/* Efecto luminoso */

.cobertura::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at 50% 30%,
        rgba(0,174,239,.12),
        transparent 50%
    );

    pointer-events:none;
}

.cobertura::after{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(0,0,0,.15),
        rgba(0,0,0,.25)
    );

    pointer-events:none;
}

/* ================= HEADER ================= */

.cobertura-header{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.cobertura-header span{
    color:#00D4C7;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.cobertura-header h2{
    margin-top:15px;
    font-size:60px;
    font-weight:900;
    line-height:1.1;
    color:white;

    text-shadow:
    0 5px 25px rgba(0,0,0,.5);
}

.cobertura-header p{
    margin-top:20px;
    font-size:18px;
    line-height:1.9;
    color:#d7e1ea;
}

/* ================= ESTADÍSTICAS ================= */

.cobertura-stats{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;

    margin-bottom:60px;
}

.stat-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;
    padding:30px;

    text-align:center;

    transition:.35s ease;
}

.stat-card:hover{
    transform:translateY(-8px);

    border-color:#00AEEF;

    box-shadow:
    0 0 35px rgba(0,174,239,.25);
}

.stat-card h3{
    font-size:44px;
    color:#00D4C7;
    font-weight:900;
    margin-bottom:10px;
}

.stat-card p{
    color:#d7e1ea;
    font-size:16px;
}

/* ================= MAPA ================= */

.mapa-container{
    position:relative;
    z-index:2;

    width:100%;

    margin-top:30px;
    margin-bottom:70px;

    overflow:hidden;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.5),
    0 0 40px rgba(0,174,239,.18);
}

.mapa-container iframe{
    width:100%;
    height:700px;
    border:none;
    display:block;
}

/* ================= COMUNIDADES ================= */

.comunidades-container{
    position:relative;
    z-index:2;
    text-align:center;
}

.comunidades-container h3{
    color:white;
    font-size:42px;
    font-weight:800;
    margin-bottom:40px;

    text-shadow:
    0 5px 20px rgba(0,0,0,.35);
}

.zonas-cobertura{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:16px;
}

.zona{
    padding:14px 24px;

    background:rgba(0,174,239,.12);

    border:1px solid rgba(0,174,239,.25);

    border-radius:50px;

    color:white;

    font-weight:600;
    font-size:15px;

    transition:.3s ease;
}

.zona:hover{
    background:#00AEEF;

    transform:
    translateY(-4px)
    scale(1.03);

    box-shadow:
    0 10px 25px rgba(0,174,239,.35);
}

/* ================= FOOTER ================= */

.cobertura-footer{
    position:relative;
    z-index:2;

    margin-top:80px;

    text-align:center;

    padding:60px;

    border-radius:30px;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);
}

.cobertura-footer h3{
    color:white;
    font-size:38px;
    margin-bottom:15px;
}

.cobertura-footer p{
    max-width:750px;
    margin:auto;

    color:#d7e1ea;

    font-size:18px;
    line-height:1.8;
}

.btn-cobertura{
    display:inline-block;

    margin-top:30px;

    padding:16px 36px;

    border-radius:50px;

    background:
    linear-gradient(
        135deg,
        #00D4C7,
        #00AEEF
    );

    color:white;
    font-weight:700;

    transition:.3s ease;
}

.btn-cobertura:hover{
    transform:translateY(-4px);

    box-shadow:
    0 15px 35px rgba(0,174,239,.35);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .cobertura{
        padding:80px 6%;
        background-attachment:scroll;
    }

    .cobertura-header h2{
        font-size:38px;
    }

    .cobertura-header p{
        font-size:16px;
    }

    .mapa-container iframe{
        height:450px;
    }

    .comunidades-container h3{
        font-size:30px;
    }

    .cobertura-footer{
        padding:35px 25px;
    }

    .cobertura-footer h3{
        font-size:28px;
    }

}
/* ================= PLANES Fichas================= */

.planes{
    padding:100px 8%;
    background:#f8fafc;
}

.planes-header{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:60px;
}

.planes-header h2{
    font-size:52px;
    color:#061321;
    margin-bottom:15px;
    font-weight:900;
}

.planes-header p{
    color:#64748b;
    font-size:18px;
}

/* GRID PRINCIPAL */

.planes-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-bottom:80px;
}

.plan-card{
    background:white;
    padding:40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    border:1px solid #e2e8f0;
}

.plan-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,174,239,.18);
}

.plan-icon{
    font-size:55px;
    margin-bottom:20px;
}

.plan-card h3{
    color:#00AEEF;
    font-size:28px;
    margin-bottom:15px;
}

.plan-card p{
    color:#64748b;
    margin-bottom:25px;
}

.btn-plan{
    display:inline-block;
    padding:12px 28px;
    background:linear-gradient(135deg,#00AEEF,#00D4C7);
    color:white;
    border-radius:50px;
    font-weight:600;
}

/* ================= FICHAS POR TIEMPO ================= */

.fichas-tiempo{
    padding:45px 5% 80px;
    text-align:center;
    position:relative;
    overflow:hidden;

    background:
    radial-gradient(circle at top center,
    rgba(0,174,239,.18),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(0,212,199,.10),
    transparent 30%),

    linear-gradient(
    180deg,
    #061321,
    #0d2238
    );
}

/* TITULO */

.fichas-tiempo h2{
    font-size:42px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:10px;

    background:
    linear-gradient(
    90deg,
    #00D4C7,
    #00AEEF,
    #2DD4FF);

    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.fichas-subtitulo{
    color:#d7e7f2;
    font-size:16px;
    margin-bottom:35px;
}

/* GRID */

.fichas-grid{
    max-width:1600px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

/* TARJETAS */

.ficha-card{
    background:white;

    border-radius:24px;
    overflow:hidden;

    border:1px solid rgba(0,212,199,.35);

    box-shadow:
    0 20px 45px rgba(0,0,0,.35),
    0 0 20px rgba(0,174,239,.10);

    transition:.35s ease;

    display:flex;
    justify-content:center;
    align-items:center;
}

.ficha-card:hover{
    transform:translateY(-6px);

    box-shadow:
    0 25px 55px rgba(0,0,0,.45),
    0 0 25px rgba(0,174,239,.25);
}

/* IMAGENES */

.ficha-card img{
    width:100%;
    height:auto;
    display:block;
}

/* TEXTO ANTES DEL BOTON */

.fichas-nota{
    color:#d7e7f2;
    margin-top:20px;
    margin-bottom:15px;
    font-size:15px;
}

/* BOTON */

.fichas-boton{
    margin-top:20px;
}

.fichas-boton a{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:16px 40px;

    border-radius:50px;

    background:
    linear-gradient(
    90deg,
    #00D4C7,
    #00AEEF);

    color:white;
    font-size:18px;
    font-weight:700;

    text-decoration:none;

    box-shadow:
    0 12px 30px rgba(0,174,239,.35);

    transition:.3s;
}

.fichas-boton a:hover{
    transform:translateY(-3px);

    box-shadow:
    0 18px 40px rgba(0,174,239,.45);
}

/* TABLET */

@media(max-width:1100px){

    .fichas-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* CELULAR */

@media(max-width:600px){

    .fichas-tiempo{
        padding:45px 6% 60px;
    }

    .fichas-tiempo h2{
        font-size:32px;
    }

    .fichas-grid{
        grid-template-columns:1fr;
    }

}
/* ================= UBICACIÓN PREMIUM ================= */

.ubicacion-pro{
    position:relative;
    overflow:hidden;
    padding:60px 8% 95px;
    color:white;
    background:
        linear-gradient(rgba(6,19,41,.96),rgba(6,19,41,.97)),
        url("img/AntenaFondo.jpeg");
    background-size:cover;
    background-position:center;
}

.ubicacion-pro::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    top:-180px;
    left:-140px;
    background:radial-gradient(circle,rgba(0,212,199,.24),transparent 70%);
}

.ubicacion-pro::after{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    right:-160px;
    bottom:-190px;
    background:radial-gradient(circle,rgba(0,174,239,.24),transparent 70%);
}

.ubicacion-header,
.ubicacion-container{
    position:relative;
    z-index:2;
}

.ubicacion-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 38px;
}

.section-tag,
.ubicacion-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(0,212,199,.12);
    border:1px solid rgba(0,212,199,.28);
    color:#00D4C7;
    font-size:14px;
    font-weight:800;
    margin-bottom:18px;
}

.ubicacion-header h2{
    font-size:56px;
    font-weight:900;
    color:white;
    margin-bottom:14px;
    text-shadow:0 5px 25px rgba(0,0,0,.45);
}

.ubicacion-header p{
    color:#d7e1ea;
    font-size:18px;
    line-height:1.7;
}

.ubicacion-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:1.45fr .9fr;
    gap:26px;
    align-items:stretch;
}

.mapa-card{
    position:relative;
    height:auto;
    min-height:430px;
    overflow:hidden;
    border-radius:28px;
    border:1px solid rgba(255,255,255,.14);
    box-shadow:0 28px 65px rgba(0,0,0,.42);
}

.mapa-card iframe{
    width:100%;
    height:100%;
    min-height:430px;
    border:none;
    display:block;
}

.info-card{
    position:relative;
    overflow:hidden;
    background:rgba(17,28,54,.86);
    border:1px solid rgba(255,255,255,.12);
    border-radius:28px;
    padding:34px;
    backdrop-filter:blur(16px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:0 28px 65px rgba(0,0,0,.42);
}

.info-label{
    display:inline-flex;
    align-items:center;
    gap:9px;
    width:max-content;
    padding:9px 18px;
    border-radius:50px;
    background:rgba(34,197,94,.14);
    border:1px solid rgba(74,222,128,.20);
    color:#4ADE80;
    font-size:14px;
    font-weight:800;
    margin-bottom:22px;
}

.status-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#4ADE80;
    animation:statusPulse 2s infinite;
}

@keyframes statusPulse{
    0%{box-shadow:0 0 0 0 rgba(74,222,128,.7);}
    70%{box-shadow:0 0 0 12px rgba(74,222,128,0);}
    100%{box-shadow:0 0 0 0 rgba(74,222,128,0);}
}

.info-card h3{
    font-size:34px;
    color:white;
    margin-bottom:28px;
}

.coverage-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:34px;
}

.coverage-list div,
.coverage-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.coverage-list i{
    min-width:44px;
    width:44px;
    height:44px;
    border-radius:13px;
    background:rgba(0,212,199,.12);
    color:#00D4C7;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.coverage-list p{
    margin:0;
    color:#d7e1ea;
    font-size:15.5px;
}

.maps-btn-wrap{
    display:flex;
    justify-content:center;
}

.btn-maps{
    min-width:220px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 30px;
    border-radius:15px;
    background:linear-gradient(135deg,#00D4C7,#00AEEF);
    color:white;
    font-size:16px;
    font-weight:800;
    text-decoration:none;
    transition:.3s;
}

.btn-maps:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 35px rgba(0,212,199,.34);
}

/* ================= CONTACTO PREMIUM COMPACTO ================= */

.contact-app{
    position:relative;
    padding:70px 8% 75px;
    background:
        linear-gradient(rgba(6, 19, 41, 0.918),rgba(6, 19, 41, 0.356)),
        url("img/Iglesia.jpeg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    text-align:center;
    color:white;
    overflow:hidden;
}

.contact-app::before{
    content:"";
    position:absolute;
    width:480px;
    height:480px;
    top:-190px;
    right:-120px;
    background:radial-gradient(circle,rgba(0,212,199,.22),transparent 70%);
}

.contact-app::after{
    content:"";
    position:absolute;
    width:480px;
    height:480px;
    bottom:-220px;
    left:-140px;
    background:radial-gradient(circle,rgba(0,174,239,.20),transparent 70%);
}

.contact-header{
    max-width:760px;
    margin:0 auto 36px;
    text-align:center;
    position:relative;
    z-index:2;
}

.contact-header h2{
    font-size:52px;
    font-weight:900;
    line-height:1.1;
    color:#FFFFFF;
    margin-bottom:14px;
    font-family:'Poppins',sans-serif;
    text-shadow:0 4px 18px rgba(0,0,0,.55);
}

.contact-header p{
    max-width:680px;
    color:#EAFBFF;
    font-size:17px;
    font-weight:500;
    line-height:1.7;
    margin:auto;
    text-shadow:0 3px 12px rgba(0,0,0,.65);
}

.app-grid{
    max-width:720px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4, 155px);
    justify-content:center;
    gap:14px;
    position:relative;
    z-index:2;
}

.app-card{
    position:relative;
    overflow:hidden;
    min-height:112px;
    padding:15px 10px;
    border-radius:18px;
    background:rgba(6,19,41,.82);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    box-shadow:0 14px 35px rgba(0,0,0,.30);
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    transition:.3s ease;
}

.app-card::before{
    content:"";
    position:absolute;
    top:-120%;
    left:-120%;
    width:250%;
    height:250%;
    background:linear-gradient(135deg,transparent,rgba(255,255,255,.10),transparent);
    transform:rotate(25deg);
    transition:.7s;
}

.app-card:hover::before{
    top:-35%;
    left:-35%;
}

.app-card:hover{
    transform:translateY(-5px);
    border-color:rgba(0,212,199,.50);
    box-shadow:0 18px 42px rgba(0,212,199,.16);
}

.app-card i{
    width:40px;
    height:40px;
    border-radius:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:white;
    margin-bottom:8px;
    position:relative;
    z-index:1;
}

.app-card h3{
    color:#FFFFFF;
    font-size:15px;
    font-weight:800;
    margin-bottom:3px;
    position:relative;
    z-index:1;
}

.app-card p{
    color:#00D4C7;
    font-size:12px;
    font-weight:800;
    margin:0;
    line-height:1.3;
    word-break:break-word;
    position:relative;
    z-index:1;
}

.whatsapp i{
    background:#25D366;
}

.facebook i{
    background:#1877F2;
}

.phone i{
    background:linear-gradient(135deg,#00D4C7,#00AEEF);
}

.mail i{
    background:linear-gradient(135deg,#00AEEF,#2DD4FF);
}

/* ================= FOOTER ================= */

.footer{
    background:linear-gradient(90deg,#071226,#0A1930);
    color:white;
    padding:18px 8%;
    border-top:1px solid rgba(0,212,199,.15);
}

.footer-content{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-left{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-align:center;
}

.footer-left img{
    width:42px;
    height:42px;
    border-radius:50%;
    object-fit:cover;
}

.footer-left span{
    color:#d7e1ea;
    font-size:14px;
    line-height:1.5;
}

/* ================= ANIMACIONES ================= */

.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* ================= BOTÓN SUBIR ================= */

.scroll-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:white;
    font-size:22px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;
}

.scroll-top.visible{
    opacity:1;
    visibility:visible;
}

/* ================= RESPONSIVE GENERAL ================= */

@media(max-width:1200px){
    .logo h1{
        font-size:26px;
    }

    .nav-links li a{
        font-size:12px;
        padding:8px 8px;
    }

    .hero-content h1{
        font-size:78px;
    }
}

@media(max-width:992px){
    .hero-container,
    .ubicacion-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .buttons,
    .stats{
        justify-content:center;
    }

    .hero-content h1{
        font-size:60px;
        letter-spacing:-2px;
    }

    .ubicacion-header h2{
        font-size:44px;
    }

    .mapa-card,
    .mapa-card iframe{
        min-height:360px;
    }

    .app-grid{
        grid-template-columns:repeat(2, 155px);
        max-width:340px;
    }

    .contact-header h2{
        font-size:42px;
    }
}

@media(max-width:768px){
    .navbar{
        height:80px;
        padding:0 22px;
    }

    .logo h1{
        font-size:23px;
    }

    .logo img{
        width:52px;
        height:52px;
    }

    .nav-links{
        position:fixed;
        top:80px;
        right:-100%;
        width:260px;
        height:calc(100vh - 80px);
        background:#071827;
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
        padding:30px;
        transition:.3s;
    }

    .nav-links.active{
        right:0;
    }

    .menu-btn{
        display:block;
    }

    .hero{
        padding:130px 25px 80px;
    }

    .hero-content h1{
        font-size:46px;
    }

    .stats{
        flex-wrap:wrap;
    }

    .hero-main-img{
        max-width:350px;
    }

    .contact-app{
        padding:65px 6% 70px;
    }

    .contact-header p{
        font-size:15.5px;
    }

    .footer-left{
        flex-direction:column;
    }
}

@media(max-width:600px){
    .ubicacion-pro{
        padding:55px 6% 75px;
    }

    .ubicacion-header h2,
    .contact-header h2{
        font-size:34px;
    }

    .ubicacion-header p{
        font-size:16px;
    }

    .mapa-card,
    .mapa-card iframe{
        min-height:310px;
        border-radius:22px;
    }

    .info-card{
        padding:26px 22px;
        border-radius:22px;
    }

    .info-card h3{
        font-size:28px;
    }

    .btn-maps{
        width:100%;
        min-width:0;
    }

    .app-grid{
        grid-template-columns:1fr;
        max-width:280px;
    }

    .app-card{
        min-height:105px;
    }

    .footer-left span{
        font-size:13px;
    }
}

@media(max-width:480px){
    .hero{
        padding:125px 6% 75px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .services,
    .contact-app{
        padding-left:6%;
        padding-right:6%;
    }
}
