/* CSS Completo para Cerrajeros Hispania - GUARDAMAR DEL SEGURA */

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mejoras adicionales para el logo en todas las pantallas */
.logo-img {
    object-fit: contain !important;
    height: auto !important;
    max-height: 150px !important; /* En desktop */
}

/* Si el logo es texto, también mejorarlo */
.logo {
    font-size: 24px !important;
}

@media only screen and (max-width: 768px) {
    .logo {
        font-size: 22px !important;
    }
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Variables CSS */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #ff6b35;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --white: #fff;
    --gray: #666;
    --border-radius: 8px;
    --box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    left: 0;
    right: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 170px;
    position: relative;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
}

.logo-img {
    height: 150px;
    width: auto;
    margin-right: 0;
    max-width: 300px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    display: none;
}

.logo-img[src*="logo.png"]:not([src]) + .logo-text,
.logo-text:only-child {
    display: inline;
}

/* Navigation - DESKTOP */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 10px 15px;
    position: relative;
    border-radius: 5px;
    white-space: nowrap;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(44, 90, 160, 0.1);
}

/* Phone Link in Nav */
.nav-phone .nav-link {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-phone .nav-link:hover {
    background: #e55a2b;
    color: var(--white);
    transform: translateY(-2px);
}

/* Dropdown - DESKTOP */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    padding: 15px 0;
    border: 1px solid #e8e8e8;
    z-index: 2000;
    overflow: visible;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: var(--light-color);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* Mobile Toggle - OCULTO EN DESKTOP */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.mobile-toggle:active {
    background: #1e3d72;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Animación hamburguesa */
.mobile-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content */
.main-content {
    margin-top: 170px;
    min-height: calc(100vh - 240px);
    position: relative;
    z-index: 1;
}

/* Contenedor genérico para todas las secciones */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3d72 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    -webkit-tap-highlight-color: transparent;
}

.cta-button:hover,
.cta-button:active {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
    background: #e55a2b;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3d72 100%);
    color: var(--white);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Intro Section */
.intro-section {
    padding: 80px 20px;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 700;
    text-align: center;
}

.intro-section p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.intro-section p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: var(--light-color);
    position: relative;
    z-index: 2;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.services .subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid #eee;
    text-align: left;
    position: relative;
    z-index: 3;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 4;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 15px;
}

.service-card p:last-child {
    margin-bottom: 0;
}

.service-card p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.why-choose h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--dark-color);
    font-weight: 700;
    text-align: center;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-item {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
    z-index: 3;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    z-index: 4;
}

.reason-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.reason-item p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Local Areas Section */
.local-areas {
    padding: 100px 20px;
    background: var(--light-color);
    position: relative;
    z-index: 2;
}

.local-areas h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 700;
    text-align: center;
}

.local-areas > .container > p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-item {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
    z-index: 3;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 4;
}

.area-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.area-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.contact .subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-item {
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
    z-index: 3;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    z-index: 4;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-item strong {
    color: var(--dark-color);
    font-weight: 600;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Emergency Info */
.emergency-info {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    margin-top: 50px;
    border: 2px solid var(--secondary-color);
    position: relative;
    z-index: 3;
}

.emergency-info h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.emergency-info p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: left;
}

.emergency-info ol {
    text-align: left;
    padding-left: 20px;
    color: var(--gray);
}

.emergency-info li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

.emergency-info li strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: var(--light-color);
    position: relative;
    z-index: 2;
}

.faq-section h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--dark-color);
    font-weight: 700;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
    z-index: 3;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 4;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 30px;
    position: relative;
    z-index: 3;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a,
.footer-zones a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover,
.footer-zones a:hover {
    color: var(--secondary-color);
}

.footer-services,
.footer-zones {
    list-style: none;
}

.footer-services li,
.footer-zones li {
    padding: 5px 0;
    color: #ccc;
    position: relative;
    padding-left: 15px;
}

.footer-services li::before,
.footer-zones li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

/* Float Call Button */
.call-float {
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: 20px;
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
    min-width: 200px;
    -webkit-tap-highlight-color: transparent;
}

.call-float:hover,
.call-float:active {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.call-float a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
}

.call-float svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ============================================= */
/* RESPONSIVE MÓVIL - CORREGIDO */
/* ============================================= */

@media only screen and (max-width: 768px) {
    /* HEADER MÓVIL */
    .nav-container {
        height: 120px;
        padding: 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .main-content {
        margin-top: 120px;
    }

    /* LOGO MÓVIL */
    .logo-img {
        height: 110px !important; /* Aumentado de 90px a 110px */
        max-width: 300px !important; /* Aumentado de 250px a 300px */
    }
    
    .nav-container {
        height: 140px !important; /* Aumentado de 120px a 140px para dar más espacio */
        padding: 20px 15px !important; /* Más padding vertical */
    }
    
    .main-content {
        margin-top: 140px !important; /* Ajustar margen del contenido */
    }

    /* MOSTRAR HAMBURGUESA EN MÓVIL */
    .mobile-toggle {
        display: flex;
        z-index: 3001;
    }

    /* OCULTAR TELÉFONO EN MENÚ MÓVIL */
    .nav-phone {
        display: none !important;
    }

    /* OVERLAY */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 2999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* MENÚ MÓVIL - OCULTO POR DEFECTO */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 140px 20px 40px 20px;
        gap: 15px;
        z-index: 3000;
        overflow-y: auto;
        overflow-x: hidden;
        transition: left 0.3s ease-in-out;
    }

    /* MENÚ VISIBLE */
    .nav-menu.active {
        left: 0;
    }

    /* ENLACES MENÚ MÓVIL */
    .nav-item {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .nav-link {
        width: 100%;
        padding: 18px 20px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 10px;
        background: var(--light-color);
        color: var(--dark-color);
        border: 2px solid #ddd;
        text-align: center;
        display: block;
        text-decoration: none;
        box-sizing: border-box;
        margin-bottom: 5px;
    }

    .nav-link:active,
    .nav-link.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    /* DROPDOWN MÓVIL */
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 10px 0 0 0;
        margin-top: 10px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
        z-index: 3001;
        overflow: visible;
    }

    .dropdown-link {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 8px;
        background: #f1f3f4;
        color: #666;
        border: 1px solid #ddd;
        text-align: center;
        display: block;
        text-decoration: none;
        border-left: none;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
    }

    .dropdown-link:active,
    .dropdown-link.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    /* BOTÓN TELÉFONO FLOTANTE */
    .call-float {
        bottom: 20px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
        max-width: none;
        min-width: auto;
        padding: 18px 25px;
        text-align: center;
        transform: none;
        z-index: 999;
    }

    .call-float a {
        font-size: 18px;
        justify-content: center;
        gap: 12px;
        font-weight: 700;
    }

    .call-float svg {
        width: 22px;
        height: 22px;
    }

    /* CONTENIDO MÓVIL */
    .container {
        padding: 0 15px;
    }

    /* HERO MÓVIL */
    .hero {
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 25px;
    }

    /* SECCIONES MÓVIL */
    .intro-section {
        padding: 60px 15px;
    }

    .intro-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .intro-section p {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .services {
        padding: 60px 15px;
    }

    .services h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .services .subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    /* WHY CHOOSE MÓVIL */
    .why-choose {
        padding: 60px 15px;
    }

    .why-choose h2 {
        font-size: 2rem;
        margin-bottom: 40px;
        line-height: 1.3;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reason-item {
        padding: 25px 20px;
    }

    .reason-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .reason-item p {
        font-size: 0.9rem;
    }

    /* LOCAL AREAS MÓVIL */
    .local-areas {
        padding: 60px 15px;
    }

    .local-areas h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .local-areas > .container > p {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .area-item {
        padding: 20px 18px;
    }

    .area-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .area-item p {
        font-size: 0.9rem;
    }

    /* CONTACT MÓVIL */
    .contact {
        padding: 60px 15px;
    }

    .contact h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .contact .subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .contact-item {
        padding: 25px 20px;
    }

    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .contact-item p {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .emergency-info {
        padding: 25px 20px;
        margin-top: 30px;
    }

    .emergency-info h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .emergency-info p {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .emergency-info ol {
        padding-left: 18px;
    }

    .emergency-info li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    /* FAQ MÓVIL */
    .faq-section {
        padding: 60px 15px;
    }

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
        line-height: 1.3;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item {
        padding: 20px 18px;
    }

    .faq-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    /* FOOTER MÓVIL */
    .footer {
        padding: 40px 15px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .footer-services li,
    .footer-zones li {
        font-size: 0.9rem;
        padding: 3px 0;
    }
}

@media only screen and (max-width: 480px) {
    .nav-container {
        height: 120px !important; /* Aumentado de 100px a 120px */
        padding: 15px 10px !important;
    }

    .main-content {
        margin-top: 120px !important; /* Ajustar margen del contenido */
    }

    .logo-img {
        height: 95px !important; /* Aumentado de 70px a 95px */
        max-width: 280px !important; /* Aumentado de 200px a 280px */
    }
    
    /* También hacer el texto del logo más grande si no hay imagen */
    .logo-text {
        font-size: 20px !important; /* Aumentado para móvil */
    }
    
    /* Mejoras adicionales para el logo */
    .logo {
        font-size: 20px !important;
    }

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

    .hamburger {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }

    .nav-menu {
        padding: 120px 15px 30px 15px;
    }

    .nav-link {
        padding: 15px 15px;
        font-size: 16px;
    }

    .dropdown-link {
        padding: 12px 15px;
        font-size: 14px;
    }

    .hero {
        padding: 50px 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

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

    .cta-button {
        font-size: 0.95rem;
        padding: 14px 20px;
    }

    .intro-section,
    .services,
    .why-choose,
    .local-areas,
    .contact,
    .faq-section {
        padding: 50px 10px;
    }

    .intro-section h2,
    .services h2,
    .why-choose h2,
    .local-areas h2,
    .contact h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }

    .service-card,
    .reason-item,
    .area-item,
    .contact-item,
    .faq-item {
        padding: 20px 15px;
    }

    .emergency-info {
        padding: 20px 15px;
    }

    .call-float {
        left: 10px;
        right: 10px;
        padding: 16px 20px;
    }

    .call-float a {
        font-size: 16px;
    }
}
