/* ==============================
   RESET BÁSICO
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==============================
   TIPOGRAFÍA Y ESTILOS GLOBALES
============================== */
body {
    font-family: 'Poppins', Arial, sans-serif;
    color: #2A2A2A;
    line-height: 1.7;
    font-size: 1rem;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 700;
    color: #2A2A2A;
    margin-bottom: 15px;
}

h2 {
    position: relative;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #0EE0D0;
}

p {
    font-size: 1.15rem;
    margin-bottom: 15px;
}

a {
    color: #0EE0D0;
    text-decoration: none;
    transition: color .3s ease;
}

a:hover {
    color: #2A2A2A;
}

button, .btn {
    font-family: inherit;
    background-color: #2A2A2A;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background .3s ease, transform .2s ease;
}

button:hover, .btn:hover {
    background-color: #0EE0D0;
    transform: translateY(-2px);
}

/* ==============================
   ENCABEZADO MEJORADO (ESCRITORIO)
============================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.95), rgba(0, 0, 0, 0.9));
    backdrop-filter: blur(10px);
    color: #fff;
    z-index: 1000;
    padding: 8px 20px;
    height: 130px;
    border-bottom: 1px solid rgba(14, 224, 208, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.logo {
    margin-left: 250px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 220px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 6px 12px rgba(14, 224, 208, 0.4));
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all .3s ease;
    position: relative;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0EE0D0;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover {
    color: #0EE0D0;
    background: rgba(14, 224, 208, 0.1);
}

.nav a:hover::before {
    width: 80%;
}

.btn-menu {
    background: linear-gradient(135deg, #0EE0D0, #05D1CB);
    color: #2A2A2A;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(14, 224, 208, 0.3);
    transition: all 0.3s ease;
}

.btn-menu:hover {
    background: linear-gradient(135deg, #05D1CB, #0EE0D0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 224, 208, 0.4);
}

.nav-toggle {
    display: none;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    color: #2A2A2A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    background: linear-gradient(135deg, #0EE0D0, #05D1CB);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 224, 208, 0.3);
}

/* ==============================
   SECCIONES PRINCIPALES
============================== */
section {
    padding: 80px 20px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.hero {
    height: 100vh;
    background: url("img/portada.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* BOTONES HERO VERTICALES MEJORADOS */
.hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 25px !important;
}

.hero-buttons .btn {
    width: 280px !important;
    padding: 15px 25px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Responsivo para móviles */
@media (max-width: 480px) {
    .hero-buttons .btn {
        width: 250px !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }
}
/* ==============================
   SECCIONES ESPECÍFICAS
============================== */
.servicios {
    background: linear-gradient(145deg, #e6f0ff, #ffffff);
    text-align: center;
}

.servicios h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #0EE0D0;
    font-weight: bold;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 100%;
    overflow-x: auto;
}

.servicio-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.servicio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.servicio-item i {
    font-size: 2.8rem;
    color: #0EE0D0;
    margin-bottom: 20px;
}

.servicio-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #333;
}

.servicio-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

#nosotros {
    background: #fff;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 130px);
}

.nosotros-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.nosotros-texto {
    flex: 1 1 500px;
    text-align: left;
}

.nosotros-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.nosotros-texto p {
    font-size: 1.08rem;
    margin-bottom: 16px;
    color: #444;
    line-height: 1.7;
}

.nosotros-imagen {
    flex: 1 1 400px;
    position: relative;
}

.nosotros-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform .4s ease;
}

.nosotros-imagen img:hover {
    transform: scale(1.03);
}

/* ==============================
   SECCIÓN COBERTURA - 4 COLUMNAS MODIFICADA
============================== */
#cobertura {
    background: #f8f8f8;
}

.cobertura-container {
    max-width: 1400px; /* Aumentamos el ancho máximo */
    margin: auto;
    width: 100%;
}

.titulo {
    text-align: center;
    font-size: 2.5rem;
    color: #0EE0D0;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
}

.subtitulo {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cobertura-lista {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr; /* 3 columnas: 1-2-1 proporción */
    gap: 25px;
    max-width: 100%;
    align-items: start;
}

.zona {
    background: #fff;
    border-left: 6px solid #0EE0D0;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zona:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Zona 02 ocupará 2 columnas usando CSS Grid */
.zona:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dividir zona 02 en 2 sub-columnas */
    gap: 30px;
    grid-column: 2; /* Se mantiene en la segunda columna del grid principal */
}

.zona:nth-child(2) h3 {
    grid-column: 1 / -1; /* El título abarca ambas sub-columnas */
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.zona:nth-child(2) ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zona h3 {
    font-size: 1.3rem;
    color: #2A2A2A;
    margin-bottom: 15px;
    text-align: center;
}

.zona ul {
    list-style: none;
    padding: 0;
}

.zona ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: .95rem;
    color: #333;
    transition: color 0.3s ease;
}

.zona ul li:hover {
    color: #0EE0D0;
}

.zona ul li:last-child {
    border-bottom: none;
}

/* ==============================
   RESPONSIVE PARA COBERTURA
============================== */
@media (max-width: 1200px) {
    .cobertura-container {
        max-width: 1200px;
    }
    
    .cobertura-lista {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .cobertura-lista {
        grid-template-columns: 1fr 1fr; /* 2 columnas en tablets */
        gap: 20px;
    }
    
    .zona:nth-child(2) {
        grid-column: 1 / -1; /* Zona 02 ocupa toda la fila */
        grid-template-columns: 1fr 1fr; /* Mantiene 2 sub-columnas */
    }
}

@media (max-width: 480px) {
    .cobertura-lista {
        grid-template-columns: 1fr; /* 1 columna en móviles */
        gap: 25px;
    }
    
    .zona:nth-child(2) {
        grid-column: 1;
        grid-template-columns: 1fr; /* Una sola columna en móvil */
    }
    
    .zona:nth-child(2) h3 {
        grid-column: 1;
    }
}
.tarifas {
    background: #f8f9fa;
}

.tarifas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tarifa-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform .3s ease;
}

.tarifa-card:hover {
    transform: translateY(-8px);
}

.tarifa-card h3 {
    font-size: 1.4rem;
    color: #2A2A2A;
    margin-bottom: 10px;
}

.precio {
    font-size: 2rem;
    font-weight: bold;
    color: #0EE0D0;
    margin-bottom: 15px;
}

.tarifa-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tarifa-card ul li {
    font-size: .95rem;
    color: #333;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.tarifa-card ul li:last-child {
    border-bottom: none;
}

/* ==============================
   SECCIÓN DE CONTACTO MODERNA Y EJECUTIVA
============================== */
#contacto {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 20px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacto {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
}

.contacto-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(14, 224, 208, 0.1);
    transition: all 0.4s ease;
}

.contacto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0EE0D0, #05D1CB, #0EE0D0);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contacto-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 12px 35px rgba(14, 224, 208, 0.2);
}

.contacto-card h2 {
    font-size: 2.8rem;
    color: #2A2A2A;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
}

.contacto-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0EE0D0, #05D1CB);
    border-radius: 2px;
}

.linea {
    display: none;
}

.contacto-card p {
    display: flex;
    align-items: center;
    margin: 20px 0;
    font-size: 1.1rem;
    color: #444;
    font-weight: 500;
    padding: 15px 20px;
    background: rgba(14, 224, 208, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.contacto-card p:hover {
    background: rgba(14, 224, 208, 0.1);
    border-left-color: #0EE0D0;
    transform: translateX(8px);
}

.contacto-card p::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(14, 224, 208, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.contacto-card p:hover::after {
    left: 100%;
}

.contacto-card i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0EE0D0, #05D1CB);
    color: #fff;
    border-radius: 12px;
    margin-right: 15px;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(14, 224, 208, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contacto-card p:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(14, 224, 208, 0.4);
}

.footer-links {
    margin-top: 30px;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(14, 224, 208, 0.2);
}

.footer-links a {
    display: inline-block;
    margin: 0 15px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #0EE0D0;
    border-color: #0EE0D0;
    background: rgba(14, 224, 208, 0.05);
    transform: translateY(-2px);
}

.contacto-mapa {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.contacto-mapa::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #0EE0D0, #05D1CB);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
}

.contacto-mapa iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin: 0;
}

.contacto-mapa:hover iframe {
    transform: scale(1.02);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.2),
        0 12px 35px rgba(14, 224, 208, 0.15);
}

/* ==============================
   FOOTER SIMPLE Y MODERNO
============================== */
.footer-contacto {
    background: linear-gradient(135deg, #2A2A2A 0%, #1a1a1a 100%);
    color: #fff;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    border-top: 3px solid #0EE0D0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 0.95rem;
    color: #ccc;
    font-weight: 500;
}

.footer-year {
    color: #0EE0D0;
    font-weight: 600;
}

.footer-company {
    color: #0EE0D0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-links a:hover {
    color: #0EE0D0;
    border-color: #0EE0D0;
    background: rgba(14, 224, 208, 0.1);
    transform: translateY(-2px);
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(14, 224, 208, 0.1);
    color: #0EE0D0;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 224, 208, 0.3);
}

.footer-social a:hover {
    background: #0EE0D0;
    color: #2A2A2A;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 15px rgba(14, 224, 208, 0.3);
}

/* ==============================
   ANIMACIONES
============================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contacto-card {
    animation: slideInLeft 0.8s ease-out;
}

.contacto-mapa {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

/* ==============================
   RESPONSIVE - MÓVILES MEJORADO
============================== */
@media (max-width: 900px) {
    .header {
        height: 100px;
        padding: 15px 20px;
        flex-wrap: nowrap;
        justify-content: space-between;
        background: linear-gradient(135deg, rgba(42, 42, 42, 0.98), rgba(0, 0, 0, 0.95));
        backdrop-filter: blur(15px);
        border-bottom: 2px solid rgba(14, 224, 208, 0.3);
    }
    
    .logo {
        margin-left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo img {
        height: 130px;
        width: auto;
        filter: drop-shadow(0 4px 12px rgba(14, 224, 208, 0.4));
        transition: all 0.3s ease;
    }

    .logo:hover img {
        transform: scale(1.08);
        filter: drop-shadow(0 6px 16px rgba(14, 224, 208, 0.6));
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, #0EE0D0, #05D1CB);
        color: #2A2A2A;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1100;
        position: relative;
        box-shadow: 0 4px 15px rgba(14, 224, 208, 0.3);
    }

    .nav-toggle:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(14, 224, 208, 0.5);
    }

    .nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #2A2A2A;
        margin: 3px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(42, 42, 42, 0.98), rgba(0, 0, 0, 0.95));
        backdrop-filter: blur(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        padding: 30px 0 35px;
        z-index: 999;
        border-bottom: 2px solid rgba(14, 224, 208, 0.3);
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: slideDown 0.4s ease-out;
    }
    
    .nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
        margin-bottom: 30px;
    }

    .nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease;
    }

    .nav ul li:last-child {
        border-bottom: none;
    }

    .nav ul li:hover {
        background: rgba(14, 224, 208, 0.1);
        transform: translateX(10px);
    }

    .nav a {
        display: block;
        font-size: 1.3rem;
        padding: 18px 25px;
        letter-spacing: 1px;
        color: #fff;
        font-weight: 500;
        transition: all 0.3s ease;
        width: 100%;
        text-transform: uppercase;
    }

    .nav a::before {
        display: none;
    }

    .nav a:hover {
        color: #0EE0D0;
        background: transparent;
        text-shadow: 0 0 10px rgba(14, 224, 208, 0.5);
    }

    .social-icons {
        display: none;
    }

    .nav-buttons-mobile {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 85%;
        margin-top: 20px;
    }
    
    .btn-menu {
        display: block;
        width: 100%;
        margin: 0;
        padding: 16px 25px;
        font-size: 1.1rem;
        border-radius: 12px;
        font-weight: 600;
        text-align: center;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .nav-buttons-mobile .btn-menu:first-of-type {
        background: linear-gradient(135deg, #0EE0D0, #05D1CB);
        color: #2A2A2A;
        border: 2px solid transparent;
    }
    
    .nav-buttons-mobile .btn-menu:last-of-type {
        background: transparent;
        color: #fff;
        border: 2px solid #0EE0D0;
    }

    .nav-buttons-mobile .btn-menu:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(14, 224, 208, 0.4);
    }

    .nav-buttons-mobile .btn-menu:last-of-type:hover {
        background: linear-gradient(135deg, #0EE0D0, #05D1CB);
        color: #2A2A2A;
    }

    section {
        padding: 80px 15px 50px;
        min-height: auto;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .servicios {
        padding: 60px 15px;
    }

    .servicios h2 {
        font-size: 2.5rem;
        margin-bottom: 35px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nosotros-container {
        flex-direction: column;
        gap: 35px;
    }
    
    .nosotros-texto {
        text-align: center;
    }

    .nosotros-texto h2 {
        font-size: 2.3rem;
    }

    .nosotros-texto h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .cobertura-lista {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .contacto {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 900px;
    }
    
    .contacto-mapa {
        min-height: 400px;
    }
    
    .contacto-mapa iframe {
        min-height: 400px;
    }

    #contacto {
        padding: 80px 15px 60px;
    }
    
    .contacto-card {
        padding: 35px 25px;
        border-radius: 15px;
    }
    
    .contacto-card h2 {
        font-size: 2.2rem;
    }
    
    .contacto-card h2::after {
        width: 60px;
    }
    
    .contacto-card p {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .contacto-card i {
        margin-right: 0;
        margin-bottom: 10px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .footer-links a {
        display: block;
        margin: 8px auto;
        max-width: 200px;
    }
    
    .contacto-mapa {
        min-height: 300px;
    }
    
    .contacto-mapa iframe {
        min-height: 300px;
        border-radius: 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        order: 1;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-copyright {
        order: 2;
    }
    
    .footer-social {
        order: 3;
        justify-content: center;
    }

    .titulo {
        font-size: 2.3rem;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    #servicios h2::after,
    #nosotros h2::after,
    #cobertura .titulo::after,
    #tarifas .titulo::after,
    #contacto h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .header {
        height: 90px;
        padding: 12px 15px;
    }

    .logo img {
        height: 115px;
    }

    .nav-toggle {
        width: 45px;
        height: 45px;
    }

    .nav-toggle span {
        width: 22px;
        height: 2px;
    }

    .nav {
        top: 90px;
        padding: 25px 0 30px;
    }

    .nav a {
        font-size: 1.2rem;
        padding: 16px 20px;
    }

    .btn-menu {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .nav-buttons-mobile {
        width: 90%;
        gap: 12px;
    }

    section {
        padding: 70px 12px 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .servicios h2 {
        font-size: 2.1rem;
    }

    .titulo {
        font-size: 2rem;
    }

    .tarifa-card h3 {
        font-size: 1.3rem;
    }

    .precio {
        font-size: 1.8rem;
    }

    .contacto-card {
        padding: 25px 20px;
    }
    
    .contacto-card h2 {
        font-size: 1.8rem;
    }
    
    .contacto-card p {
        font-size: 1rem;
        padding: 15px 10px;
    }
    
    .contacto-mapa {
        min-height: 250px;
    }
    
    .contacto-mapa iframe {
        min-height: 250px;
    }

    .footer-contacto {
        padding: 20px 15px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}