/* Estilos generales para Control de Plagas Segovia */

/* Importar Google Fonts */


/* Reseteo y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #0d6efd;
    transition: color 0.3s;
}

a:hover {
    color: #0a58ca;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a3c34;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    color: #11395C;
    font-weight: 700;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
}

h3 {
    font-size: 1.5rem;
    color: #2e7d32;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover {
    background-color: #2e7d32;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-primary:hover:before {
    left: 100%;
}

.btn-secondary {
    background-color: #ffcc00;
    color: #333;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.btn-outline:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background-color: #e0e0e0;
    color: #333;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* ===== HEADER SIERRA GUARD PROFESIONAL ===== */
.sierra-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sierra-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ===== PARTE SUPERIOR DEL HEADER ===== */
.header-top {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 18px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Logo a la izquierda */
.logo-section {
    flex-shrink: 0;
}

.header-logo {
    height: 65px;
    width: auto;
}



/* Ocultar teléfono móvil en desktop */
.mobile-phone {
    display: none;
}

/* Tres bloques informativos a la derecha */
.info-blocks {
    display: flex;
    align-items: center;
    gap: 35px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #11395C;
    font-size: 0.95rem;
    font-weight: 500;
}

.info-block i {
    color: #3A6341;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.info-block a {
    color: #11395C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #3A6341;
}

/* Botón amarillo llamativo */
.btn-presupuesto {
    background: linear-gradient(135deg, #FFD700, #FFC107);
    color: #11395C;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.4);
    white-space: nowrap;
}

.btn-presupuesto:hover {
    background: linear-gradient(135deg, #FFC107, #FFB300);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
    color: #0d2a42;
}

/* ===== PARTE INFERIOR DEL HEADER ===== */
.header-bottom {
    background: #11395C;
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
}

.header-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== NAVEGACIÓN PRINCIPAL (CENTRADA) ===== */
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.navigation-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
}

.menu-item {
    position: relative;
}

.menu-link,
.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
    border-radius: 25px;
    display: block;
}

.menu-link:hover,
.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.menu-link.active,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 700;
}

/* Separadores entre enlaces del menú */
.navigation-menu li:not(:last-child)::after {
    content: '·';
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

/* ===== REDES SOCIALES (A LA DERECHA) ===== */
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #f8f9fa;
    color: #11395C;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #3A6341;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 99, 65, 0.3);
}

.social-link i {
    font-size: 1rem;
}

/* ===== BOTÓN MENÚ MÓVIL ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(17, 57, 92, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #11395C;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .sierra-header {
        padding: 0;
        display: block;
        visibility: visible;
        opacity: 1;
    }
    
    .header-top {
        padding: 12px 20px;
        flex-wrap: wrap;
        gap: 15px;
        display: flex;
        background: #ffffff;
    }
    
    .logo-section {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: flex-start;
    }
    
    .header-logo {
        height: 50px;
        flex-shrink: 0;
        max-width: 180px;
        object-fit: contain;
    }
    

    
    .mobile-phone {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #2e7d32;
        font-size: 0.85rem;
        font-weight: 600;
        white-space: nowrap;
    }
    
    .mobile-phone i {
        font-size: 0.9rem;
        color: #2e7d32;
    }
    
    .mobile-phone a {
        color: #2e7d32;
        text-decoration: none;
        font-weight: 600;
    }
    
    .mobile-phone a:hover {
        color: #1a3c34;
    }
    
    .info-blocks {
        display: none;
    }
    
    .btn-presupuesto {
        padding: 10px 16px;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .header-bottom {
        padding: 12px 20px;
        position: relative;
        display: block;
        background: #ffffff;
    }
    
    .header-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 1;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 20px;
        order: 3;
        width: 100%;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .navigation-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .navigation-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navigation-menu li:last-child {
        border-bottom: none;
    }
    
    .navigation-menu li:not(:last-child)::after {
        display: none;
    }
    
    .nav-link {
        padding: 15px 0;
        border-radius: 0;
        width: 100%;
        text-align: left;
    }
    
    .social-links {
        gap: 10px;
        order: 2;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 10px 15px;
    }
    
    .logo {
        height: 40px;
    }
    
    .quote-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .header-bottom {
        padding: 10px 15px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link i {
        font-size: 0.8rem;
    }
}

/* ===== CÓDIGO DUPLICADO ELIMINADO ===== */

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
    }
    
    .corporate-header {
        padding: 16px 0;
    }
    
    .corporate-header.scrolled {
        padding: 12px 0;
    }
    
    
}

/* Hero section - Diseño elegante y moderno */
.hero {
    background: linear-gradient(135deg, #1a3c34 0%, #2e7d32 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    margin-top: 80px;
    padding: 100px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../imgs/hero-pest-control.jpg?v=3') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-links {
    display: flex;
    gap: 20px;
    margin: 0 20px;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 5px 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-item:hover, .nav-item.active {
    color: var(--primary-color);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.logo img {
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px;
    border-radius: 5px;
}

.hero-content {
    max-width: 700px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content h1 .highlight {
    color: #ffcc00;
    font-weight: 800;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-feature i {
    color: #ffcc00;
    font-size: 1.1rem;
}

/* Sección de testimonios */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
}

.testimonials .section-intro {
    text-align: center;
    margin-bottom: 50px;
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #007bff;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 20px;
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 2px;
}

.testimonial p {
    font-style: italic;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

.testimonial-author {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial {
        padding: 20px;
    }
}

/* Sección de cobertura - Nuevo diseño profesional */
.coverage-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.coverage-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.coverage-content {
    flex: 1;
    min-width: 300px;
}

.coverage-content h2 {
    color: #11395C;
    margin-bottom: 1rem;
    font-size: 2.25rem;
    position: relative;
    padding-bottom: 15px;
    text-align: left;
}

.coverage-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
    transform: none;
}

.coverage-subtitle {
    color: #4CAF50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.coverage-description {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.coverage-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2rem;
}

.coverage-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.coverage-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coverage-feature i {
    color: #4CAF50;
    font-size: 1.5rem;
}

.coverage-feature span {
    font-weight: 600;
    color: #333;
}

.coverage-map {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 0 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.coverage-map h3 {
    color: #1a3c34;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coverage-map h3 i {
    color: #4CAF50;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.areas-grid li {
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid #4CAF50;
    display: flex;
    align-items: center;
}

.areas-grid li:hover {
    transform: translateY(-3px);
    background-color: #e8f5e9;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.areas-grid li::before {
    content: '✓';
    margin-right: 8px;
    color: #4CAF50;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    padding: 30px 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.benefits-section .container {
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 0.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #4CAF50;
}

.benefit-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    color: #2e7d32;
}

.benefit-item h3, .benefit-item .benefit-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.benefit-item:hover h3 {
    color: #4CAF50;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ffcc00;
    color: #1a3c34;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.btn-primary:hover {
    background: #ffd54f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}



/* Sección de servicios */
.services {
    padding: 80px 0;
    background-color: white;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.service-card h3 {
    padding: 20px 20px 10px;
}

.service-card p {
    padding: 0 20px 20px;
    color: #666;
}

.service-card .btn {
    margin: 0 20px 20px;
}

/* Servicios adicionales */
.additional-services {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.accordion {
    margin-top: 2rem;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 0 20px;
}

.accordion-header {
    padding: 15px 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
    color: #333;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-header:hover {
    background-color: #e9e9e9;
}

.accordion-header:after {
    content: '+';
    font-size: 1.5rem;
    color: #4CAF50;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header:after {
    content: '+';
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: white;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 20px;
}

.special-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: #666;
}

/* Servicio de urgencias - Diseño profesional */
.emergency-service {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Montserrat', 'Open Sans', sans-serif;
}

.emergency-service h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #11395C;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.emergency-service h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #355C41;
    border-radius: 2px;
}

.emergency-service .section-intro {
    font-size: 1.125rem;
    color: #333333;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-service > .container > p {
    font-size: 1.125rem;
    color: #333333;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-features {
    background-color: #F9F9F9;
    border-radius: 12px;
    padding: 40px;
    margin: 3rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.emergency-features-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.emergency-icon {
    font-size: 2.5rem;
    color: #355C41;
    flex-shrink: 0;
}

.emergency-features-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.emergency-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.emergency-text li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.125rem;
    color: #333333;
    line-height: 1.5;
}

.emergency-text li::before {
    content: '✅';
    font-size: 1.2rem;
    flex-shrink: 0;
}

.emergency-contact {
    margin-top: 3rem;
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 2px solid #355C41;
    box-shadow: 0 4px 12px rgba(53, 92, 65, 0.1);
}

.emergency-contact p {
    font-size: 1.125rem;
    color: #333333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.emergency-contact i {
    color: #355C41;
    margin-right: 10px;
    font-size: 1.2rem;
}

.emergency-tagline {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.emergency-tagline span {
    font-weight: 600;
    color: #355C41;
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    border: 2px solid #355C41;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(53, 92, 65, 0.15);
}

.emergency-tagline span:hover {
    background-color: #355C41;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 92, 65, 0.25);
}

/* CTA de emergencia */
.emergency-cta {
    margin-top: 2.5rem;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #355C41 0%, #4a7c59 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(53, 92, 65, 0.3);
}

.btn-emergency,
.btn-primary.btn-emergency {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    padding: 18px 40px !important;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-emergency::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

/* Estilos para emergency-hero */
.emergency-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.emergency-content {
    flex: 1;
}

.emergency-image {
    flex: 0 0 300px;
}

.emergency-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Estilos para why-us-header */
.why-us-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.why-us-text {
    flex: 1;
}

.why-us-image {
    flex: 0 0 250px;
}

.why-us-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .emergency-hero,
    .why-us-header {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-image,
    .why-us-image {
        flex: none;
        max-width: 250px;
    }
}

.btn-emergency:hover::before {
    left: 100%;
}

.btn-emergency:hover,
.btn-primary.btn-emergency:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.6) !important;
    background: linear-gradient(135deg, #ff6666 0%, #ff0000 100%) !important;
    color: #ffffff !important;
}

.emergency-note {
    margin-top: 15px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Botón amarillo pequeño */
.btn-yellow {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%) !important;
    color: #333333 !important;
    border: none !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-yellow:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.5) !important;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%) !important;
    color: #222222 !important;
}

/* Tipos de fumigación - Diseño profesional y llamativo */
.fumigation-types {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.fumigation-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(76, 175, 80, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(33, 150, 243, 0.05) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.fumigation-types h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.fumigation-types h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #2196F3);
    border-radius: 2px;
}

.fumigation-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.fumigation-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.fumigation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fumigation-card:hover::before {
    opacity: 1;
}

.fumigation-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.fumigation-card.home {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
}

.fumigation-card.business {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #4CAF50, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(76, 175, 80, 0.3));
    transition: all 0.3s ease;
}

.fumigation-card.business .card-icon {
    background: linear-gradient(135deg, #2196F3, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(33, 150, 243, 0.3));
}

.fumigation-card:hover .card-icon {
    transform: scale(1.1) rotateY(10deg);
}

.fumigation-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: inherit;
}

.fumigation-card ul {
    text-align: left;
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
}

.fumigation-card li {
    margin-bottom: 0.8rem;
    padding: 8px 0 8px 35px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
    color: inherit;
    transition: all 0.2s ease;
}

.fumigation-card li:hover {
    transform: translateX(5px);
}

.fumigation-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4CAF50, #66bb6a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.fumigation-card.business li:before {
    background: linear-gradient(135deg, #2196F3, #42a5f5);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.fumigation-card .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.fumigation-card.home .btn {
    background: linear-gradient(135deg, #4CAF50, #66bb6a);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.fumigation-card.business .btn {
    background: linear-gradient(135deg, #2196F3, #42a5f5);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.fumigation-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Proceso de contratación */
.process {
    padding: 80px 0;
    background-color: white;
    padding: 0 20px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-note {
    text-align: center;
    margin-top: 2rem;
    font-weight: 600;
    color: #4CAF50;
}

/* Tarifas - Diseño profesional y moderno */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(76, 175, 80, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(17, 57, 92, 0.03) 2px, transparent 2px);
    background-size: 80px 80px;
    animation: floatBackground 25s ease-in-out infinite;
}

@keyframes floatBackground {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #11395C;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.pricing h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
}

/* Subtítulo explicativo centrado */
.pricing .section-intro {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #555555;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.pricing > .container > p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    color: #666666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Caja informativa con sombra suave */
.pricing-factors {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin: 0 auto 3rem;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.pricing-factors h3 {
    font-family: 'Montserrat', sans-serif;
    color: #11395C;
    margin-bottom: 24px;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-factors h3 i {
    color: #4CAF50;
    font-size: 1.3rem;
}

.pricing-factors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-factors li {
    padding: 12px 0;
    color: #333333;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.pricing-factors li:hover {
    color: #11395C;
    transform: translateX(5px);
}

.pricing-factors li::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Bloque CTA centrado */
.pricing-cta {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-cta p:first-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-cta p:first-child i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.pricing-cta .btn {
    background-color: #FFC107;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.pricing-cta .btn:hover {
    background-color: #e6ac00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
    color: #000000;
}

.pricing-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #999999;
    font-style: italic;
    margin: 0;
    font-weight: 400;
}

/* Por qué elegirnos */
.why-us {
    padding: 80px 0;
    background-color: white;
    padding: 0 20px;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.benefit {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.benefit:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.why-us-tagline {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* Zonas de cobertura */
.coverage-areas {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.areas-container {
    margin: 2rem 0;
}

.areas-container h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.area-tag {
    background-color: #f1f1f1;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1rem;
    transition: background-color 0.3s;
    cursor: pointer;
}

.area-tag:hover {
    background-color: #e0e0e0;
}

.area-tag.selected {
    background-color: #4CAF50;
    color: white;
    font-weight: 600;
}

.area-tag.selected:hover {
    background-color: #45a049;
}

.areas-note {
    margin-top: 2rem;
    text-align: center;
    color: #666;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: white;
    padding: 0 20px;
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

/* Contacto */
.contact {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3, .contact-form h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emergency-contact {
    margin-top: 2rem;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 10px;
    text-align: center;
}

.emergency-contact h4 {
    margin-bottom: 1rem;
    color: #2e7d32;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

textarea {
    resize: vertical;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-container input {
    width: auto;
}

/* Footer */
.footer {
    background-color: #1a3c34;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: space-between;
}

.footer-logo, .footer-links, .footer-services, .footer-locations {
    min-width: 200px;
    flex: 1;
}

.footer-logo p {
    margin-bottom: 0.5rem;
}

.footer-logo p:first-of-type {
    margin-bottom: 1rem;
}

.footer-logo p i {
    color: var(--sierra-green-light);
    width: 16px;
    margin-right: 0.5rem;
}

/* Estilos específicos para la información de contacto en el footer */
.footer-logo p {
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-logo p a {
    font-size: 0.8rem;
    color: #ccc;
    transition: color 0.3s;
}

.footer-logo p a:hover {
    color: white;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
    background-color: white;
    padding: 0 20px;
    padding: 5px;
    border-radius: 5px;
}

/* Estilos unificados para todos los títulos h3 del footer */
.footer-logo h3, .footer-links h3, .footer-services h3, .footer-locations h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo h3:after, .footer-links h3:after, .footer-services h3:after, .footer-locations h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4CAF50;
    transition: width 0.3s ease;
}

.footer-logo h3:hover:after, .footer-links h3:hover:after, .footer-services h3:hover:after, .footer-locations h3:hover:after {
    width: 70px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-services a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-services a:hover {
    color: white;
}

.footer-contact a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ccc;
}

.footer-bottom a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-phone, .floating-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.floating-phone {
    width: 50px;
    height: 50px;
    background-color: #4CAF50;
    color: white;
    font-size: 1.2rem;
}

.floating-contact {
    background-color: #333;
    color: white;
    padding: 15px 25px;
    gap: 10px;
}

.floating-phone:hover, .floating-contact:hover {
    transform: translateY(-5px);
}

/* Botón de menú móvil */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

/* Responsive */
@media (max-width: 992px) {
    /* Header responsivo */
    .header-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo-container {
        margin-bottom: 10px;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin: 10px 0;
    }
    
    .nav-list {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-link {
        padding: 6px 10px;
        margin: 5px;
    }
    
    .header-contact {
        margin-top: 5px;
    }
    
    .hero {
        margin-top: 140px;
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    /* Header responsivo */
    .professional-header {
        padding: 12px 0;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .company-name {
        font-size: 1.3rem;
    }
    
    .header-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .hero .container {
        display: flex;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-feature {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    

    
    .navbar {
        padding: 15px 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    .coverage-container {
        flex-direction: column;
    }
    
    .coverage-content, .coverage-map {
        width: 100%;
    }
    
    .coverage-features {
        flex-direction: column;
    }
    
    .coverage-feature {
        width: 100%;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .process-steps, .fumigation-cards {
        flex-direction: column;
        gap: 25px;
    }
    
    .fumigation-types {
        padding: 60px 0;
    }
    
    .fumigation-types h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .fumigation-types h2::after {
        width: 80px;
        height: 3px;
    }
    
    .fumigation-card {
        min-width: 280px;
        max-width: 100%;
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .card-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .fumigation-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .fumigation-card li {
        padding: 6px 0 6px 30px;
        font-size: 0.95rem;
    }
    
    .fumigation-card li:before {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .fumigation-card .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .floating-contact {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .emergency-service {
        padding: 60px 20px;
    }
    
    .emergency-service h2 {
        font-size: 1.8rem;
        padding-bottom: 0.75rem;
    }
    
    .emergency-service h2::after {
        width: 60px;
        height: 2px;
    }
    
    .emergency-service .section-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .emergency-service > .container > p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .emergency-features {
        padding: 25px 20px;
        margin: 2rem 10px;
    }
    
    .emergency-features-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 1.5rem;
    }
    
    .emergency-features-header h3 {
        font-size: 1.25rem;
    }
    
    .emergency-text ul {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .emergency-text li {
        padding: 10px 0;
        font-size: 1.125rem;
    }
    
    .emergency-contact {
        display: none;
    }
    
    /* Responsive para sección de tarifas */
    .pricing {
        padding: 60px 0;
    }
    
    .pricing .section-intro {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .pricing > .container > p {
        font-size: 1.125rem;
        padding: 0 15px;
    }
    
    .pricing-factors {
        margin: 0 15px 2.5rem;
        padding: 30px 25px;
    }
    
    .pricing-factors h3 {
        font-size: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .pricing-factors li {
        font-size: 1.125rem;
        padding: 10px 0;
    }
    
    .pricing-cta {
        padding: 0 15px;
    }
    
    .pricing-cta p:first-child {
        font-size: 1rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .pricing-cta .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .benefits-section {
        padding: 4rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        margin-top: 2rem;
    }
    
    .benefit-item {
        padding: 0.8rem 0.4rem;
        gap: 0.8rem;
    }
    
    .benefit-icon {
        font-size: 1.3rem;
    }
    
    .benefit-item h3, .benefit-item .benefit-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    /* Menú móvil hamburguesa */
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #11395C;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e8e8e8;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav-link {
        color: #ffffff;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    /* Header en pantallas muy pequeñas */
    .professional-header {
        padding: 10px 0;
    }
    
    .header-content {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .company-name {
        font-size: 1.1rem;
    }
    
    .hero {
        margin-top: 65px;
        padding: 40px 0;
        min-height: 60vh;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-feature {
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    

    
    .navbar {
        flex-direction: column;
        gap: 15px;
        position: relative;
        padding-top: 60px;
    }
    
    .logo {
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .logo img {
        height: 40px;
    }
    
    .service-card {
        min-width: 100%;
    }
    
    .benefit, .step {
        padding: 20px;
    }
    
    .benefits-section {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .benefit-item {
        padding: 0.8rem 0.5rem;
        gap: 0.6rem;
        margin: 0;
    }
    
    .benefit-icon {
        font-size: 1.2rem;
    }
    
    .benefit-item h3, .benefit-item .benefit-title {
        font-size: 0.8rem;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    /* Responsive móvil para tarifas */
    .pricing h2 {
        font-size: 1.8rem;
    }
    
    .pricing .section-intro {
        font-size: 0.95rem;
    }
    
    .pricing > .container > p {
        font-size: 0.9rem;
    }
    
    .pricing-factors {
        margin: 0 10px 2rem;
        padding: 25px 20px;
    }
    
    .pricing-factors h3 {
        font-size: 1.1rem;
    }
    
    .pricing-factors li {
        font-size: 0.9rem;
    }
    
    .pricing-cta p:first-child {
        font-size: 0.95rem;
    }
    
    .pricing-cta .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .pricing-note {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    /* Header en pantallas muy pequeñas */
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .header-logo {
        height: 40px;
    }
    
    .header-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Benefits section en móviles */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.3rem 0.8rem;
        gap: 0.5rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-item h3, .benefit-item .benefit-title {
        font-size: 0.95rem;
    }
}

/* Estilos responsivos para el hero mejorado */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: 80vh;
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 2rem;
    }
    
    .hero .cta-buttons .btn {
        padding: 16px 30px;
        font-size: 1rem;
        min-width: 250px;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .cta-buttons {
        gap: 12px;
        margin-top: 1.5rem;
    }
    
    .hero .cta-buttons .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
        min-width: 220px;
        letter-spacing: 0.5px;
    }
    
    .hero::before {
        animation: none;
    }
}

/* Footer responsive */
@media (min-width: 768px) {
    .footer-content {
        flex-wrap: nowrap;
    }
    
    .footer-logo, .footer-links, .footer-services, .footer-locations {
         min-width: 180px;
         flex: 1;
     }
}

@media (min-width: 1024px) {
    .footer-content {
        gap: 3rem;
    }
    
    .footer-logo, .footer-links, .footer-services, .footer-locations {
         min-width: 200px;
     }
}

/* JavaScript-dependent styles */
.accordion-item.active .accordion-header {
    background-color: #e8f5e9;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content, .services-grid, .benefits, .process-steps {
    animation: fadeIn 1s ease-out;
}
