:root {
    --primary: #00AEEF;       /* Cian brillante (para acentos) */
    --primary-dark: #0085C3;  /* Cian oscuro */
    --text: #1A1A1A;         /* Negro suave */
    --text-light: #4D4D4D;   /* Gris oscuro */
    --bg-light: #F0F4F8;     /* Fondo azul claro muy tenue */
    --white: #FFFFFF;
    --black: #0A2463;        /* Azul marino (para títulos) */
    --gray: #D9E2EC;         /* Gris azulado */
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
/* Reset y Base */ 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.header {
    padding: 15px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    background: linear-gradient(90deg, #F5F5F5 0%, #E0E2FF 100%);
}

.logo img {
    filter: brightness(0) invert(0);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    width: 150px;
    height: auto;
    opacity: 0.9;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav a {
    color: #002244;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    /* color: var(--primary); */
    color: #0066FF;
}

/* Logo */
.logo {
    flex-shrink: 0;
    z-index: 10;
}

/* Botón móvil */
.mobile-menu-button {
    display: none; /* Oculto en desktop */
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
    padding: 10px;
    position: relative;
}
/* Solo mostrar en móviles */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    text-align: center;
    background: url('../images/towercity.jfif') no-repeat center center/cover;
    background-attachment: fixed;
    background-position: center 30%;
    transition: background-position 0.1s ease-out;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-position: center center;
    }
}

.hero .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    max-width: 900px;
}

.hero__subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 3rem;
    width: 100%;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0085C3;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
    rgba(0, 34, 68, 0.6) 0%, /* Azul oscuro más opaco */
                rgba(0, 102, 255, 0.3) 100%);
    z-index: 1;
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero__title {
        font-size: 2.2rem;
    }
    .hero__subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 550px;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* Botones */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button,
.whatsapp-button,
.phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

/* Botón principal */
.cta-button {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Botón de WhatsApp */
.whatsapp-button {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.whatsapp-button:hover {
    background: #128C7E;
    border-color: #128C7E;
}

/* Botón de llamada */
.phone-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
}

.phone-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Tamaño grande para el botón principal */
.cta-button--large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Iconos */
.whatsapp-button img,
.phone-button img {
    width: 24px;
    height: 24px;
}

/* Responsive Botones */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button,
    .whatsapp-button,
    .phone-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Secciones comunes */
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: var(--text);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
}

/* Beneficios */
.benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Cobertura */


.coverage-section {
    padding: 1rem 0;
    margin: 0 auto;
    max-width: 800px;
}

.compact-container {
    padding: 0 1rem;
}

.compact-title {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0.8rem;
    text-align: center;
    font-weight: normal;
}

/* Mapa reducido */
.compact-map-wrapper {
    width: 70%; /* Ajusta este valor según necesidad */
    margin: 0 auto;
    border: 1px solid #eaeaea; /* Borde ultra sutil */
}

.compact-map {
    width: 100%;
    height: auto;
    display: block;
}

/* Leyenda casi invisible */
.micro-legend {
    font-size: 0.8rem;
    color: #777;
    text-align: center;
    margin-top: 0.5rem;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px 0 10px;
}

.dot.available { background: #0085C3; }
.dot.coming { background: #aaa; }
/* Botón CTA */
.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: #0085C3;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: white;
    color: #0085C3;
    border-color: #0085C3;
}

/* Testimonios - Estilos mejorados */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    transition: opacity 0.5s ease;
}

.testimonial-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Estilos específicos para las imágenes de autores (tamaño pequeño como preferías) */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(251, 103, 3, 0.3);
    transition: all 0.3s ease;
}

.testimonial-author img:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.85rem;
    color: #7f8c8d;
}

/* Controles del slider */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(251, 103, 3, 0.7);
    color: white;
    border: none;
    padding: 12px 17px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Indicadores */
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Testimonios */
@media (max-width: 768px) {
    .testimonial {
        padding: 0 10px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
}

/* CTA Final */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--bg-light);
    color: var(--text); 
    border-top: 3px solid var(--primary);
    padding: 4rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer__col {
    padding: 0 1.5rem;
}

.footer__title {
    color:#0085C3;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #0085C3;
}

/* Brand Column */
.footer__logo {
    width: 160px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer__badge {
    width: 100px;
    height: auto;
    opacity: 0.9;
}

/* Location Column */
.footer__address {
    font-style: normal;
    margin-bottom: 1.5rem;
    color: #121212;
}

.footer__map-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.footer__map {
    width: 100%;
    height: 200px;
    border: 0;
}

/* Schedule Column */
.footer__days {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #121212;
}

.footer__time-list {
    list-style: none;
    padding-left: 0;
    color: #121212;
}

.footer__time-list li {
    margin-bottom: 0.25rem;
}

.footer__contact {
    margin-top: 2rem;
}

.footer__contact-title {
    color: #121212;
    margin-bottom: 0.5rem;
}

.footer__phone {
    color: #0085C3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer__phone:hover {
    color: #121212;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .coverage__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .coverage__text {
        text-align: center;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer__brand {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .header__content {
        flex-direction: column;
    }
    
    .nav {
        margin-top: 20px;
        display: none;
    }
    
    .nav.active {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .nav a {
        margin: 10px 0;
    }
    
    .hero {
        min-height: 500px;
        text-align: center;
    }
    
    .hero__content {
        margin: 0 auto;
        text-align: center;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__brand {
        grid-column: span 1;
    }
    
    .footer__col {
        margin-bottom: 2rem;
    }
    
    .footer__col:last-child {
        margin-bottom: 0;
    }
    .mobile-menu-button {
        display: block;
    }
    /* Estilos para los íconos (hamburguesa y "X") */
    .menu-icon, .close-icon {
        font-size: 1.8rem;
        color: white;
        transition: opacity 0.3s, transform 0.3s;
    }
    
    .close-icon {
        position: absolute;
        opacity: 0;
        transform: rotate(90deg);
    }
    
    /* Efecto al activar el menú */
    .mobile-menu-button.active .menu-icon {
        opacity: 0;
        transform: rotate(90deg);
    }
    
    .mobile-menu-button.active .close-icon {
        opacity: 1;
        transform: rotate(0deg);
    }
    
    /* Efecto hover (opcional) */
    .mobile-menu-button:hover .menu-icon,
    .mobile-menu-button:hover .close-icon {
        color: var(--primary);
    }
    /* Oculta el menú normal y estiliza el móvil */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #2c3e50;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%); /* Lo esconde fuera de la pantalla */
        transition: transform 0.3s ease;
        z-index: 10;
        padding-top: 60px; /* Espacio para el botón */
    }

    /* Clase 'active' que mostrará el menú */
    .nav.active {
        transform: translateX(0); /* Vuelve a la posición normal */
    }

    /* Estilos para los enlaces del menú móvil */
    .nav a {
        margin: 15px 0;
        color: white;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .phone-button {
        justify-content: center;
    }
}
/* Modo oscuro */
.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
  }
  
  .dark-mode .header,
  .dark-mode .footer,
  .dark-mode .hero__overlay {
    background-color: #1e1e1e;
  }
  
  .dark-mode .benefit-card,
  .dark-mode .testimonial-content {
    background-color: #2c2c2c;
    color: #e0e0e0;
    box-shadow: none;
  }
  
  .dark-mode .nav a {
    color: #f5f5f5;
  }
  
  .dark-mode .cta-button,
  .dark-mode .whatsapp-button,
  .dark-mode .phone-button {
    border-color: #ffffff;
  }
  
  .dark-mode .cta-button:hover {
    background-color: #fb6703;
  }
  
  .dark-mode .dot {
    background: #555;
  }
  
  .dark-mode .dot.active {
    background: #fb6703;
  }
  
  /* Efecto fade-in */
  .invisible {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .fade-in {
    opacity: 1;
    transform: translateY(0);
  }