
        :root {
            /* Paleta de colores terrosos y profesionales */
            --primary: #D97706;
            --primary-dark: #B45309;
            --secondary: #1E3A8A;
            --accent: #059669;
            --text-dark: #1F2937;
            --text-light: #6B7280;
            --bg-light: #F9FAFB;
            --bg-white: #FFFFFF;
            --border: #E5E7EB;
            
            /* Typography */
            --font-display: 'Bebas Neue', sans-serif;
            --font-body: 'Work Sans', sans-serif;
            
            /* Spacing */
            --section-padding: 80px 20px;
            --container-max: 1200px;
        }
        
        
        /* Container */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(217, 119, 6, 0.75) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-left {
            animation: slideInLeft 0.8s ease-out;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            animation: fadeIn 1s ease-out 0.2s both;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .hero h1 {
            font-family: var(--font-display);
            font-size: 64px;
            line-height: 1.1;
            color: white;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-subtitle {
            font-size: 20px;
            color: rgba(255,255,255,0.95);
            margin-bottom: 30px;
            font-weight: 500;
        }
        
        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-weight: 500;
        }
        
        .hero-feature i {
            color: var(--accent);
            font-size: 20px;
        }
        
        .hero-ctas {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 16px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            border: none;
        }
        
        .hero-right {
            position: relative;
            animation: slideInRight 0.8s ease-out;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
        }
        
        .hero-image-wrapper img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }
        
        .hero-badge-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: white;
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .hero-badge-overlay strong {
            display: block;
            font-size: 28px;
            color: var(--primary);
            font-family: var(--font-display);
        }
        
        .hero-badge-overlay span {
            font-size: 14px;
            color: var(--text-light);
        }
        
        /* Trust Bar */
        .trust-bar {
            background: white;
            padding: 40px 20px;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
        }
        
        .trust-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }
        
        .trust-stat {
            animation: fadeInUp 0.6s ease-out both;
        }
        
        .trust-stat:nth-child(1) { animation-delay: 0.1s; }
        .trust-stat:nth-child(2) { animation-delay: 0.2s; }
        .trust-stat:nth-child(3) { animation-delay: 0.3s; }
        .trust-stat:nth-child(4) { animation-delay: 0.4s; }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .trust-stat i {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .trust-stat-number {
            display: block;
            font-size: 42px;
            font-weight: 700;
            color: var(--text-dark);
            font-family: var(--font-display);
            line-height: 1;
        }
        
        .trust-stat-label {
            font-size: 16px;
            color: var(--text-light);
            margin-top: 5px;
        }
        
        /* Section Styles */
        section {
            padding: var(--section-padding);
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .section-tag {
            display: inline-block;
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        
        .section-title {
            font-family: var(--font-display);
            font-size: 48px;
            color: var(--text-dark);
            margin-bottom: 15px;
            letter-spacing: 1px;
        }
        
        .section-description {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.7;
        }
        
        /* Services Section */
        .services {
            background: var(--bg-light);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            cursor: pointer;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: var(--primary);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: white;
        }
        
        .service-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--text-dark);
        }
        
        .service-card p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .service-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s ease;
        }
        
        .service-link:hover {
            gap: 10px;
        }
        
        /* Process Section */
        .process {
            background: white;
        }
        
        .process-timeline {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--border);
            transform: translateX(-50%);
        }
        
        .process-step {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
            position: relative;
        }
        
        .process-step:nth-child(even) .process-content {
            order: 2;
        }
        
        .process-number {
            position: absolute;
            left: 50%;
            top: 20px;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 28px;
            color: white;
            box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
            z-index: 2;
        }
        
        .process-content {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 12px;
        }
        
        .process-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        
        .process-content p {
            color: var(--text-light);
            line-height: 1.6;
        }
        
        /* Gallery Section */
        .gallery {
            background: var(--bg-light);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            height: 300px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay span {
            color: white;
            font-weight: 600;
        }
        
        /* Testimonials Section */
        .testimonials {
            background: white;
        }
        
        /* Coverage Area Section */
        .coverage {
            background: var(--bg-light);
        }
        
        /*.coverage-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }*/
        
        .coverage-map {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .coverage-map iframe {
            width: 100%;
            height: 400px;
            border: none;
        }
        
        /*.coverage-zones {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }*/
        
        /*.zone-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }*/
        
        /*.zone-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .zone-item i {
            color: var(--accent);
            font-size: 18px;
        }*/
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            text-align: center;
        }
        
        .cta-section .section-title {
            color: white;
        }
        
        .cta-section .section-description {
            color: rgba(255,255,255,0.9);
        }
        
        
        /* Responsive Design */
        @media (max-width: 968px) {
            
            .hero-content {
                grid-template-columns: 1fr;
            }
            
            .hero-right {
                display: none;
            }
            
            .hero h1 {
                font-size: 48px;
            }
            
            .trust-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .process-timeline::before {
                left: 30px;
            }
            
            .process-step {
                grid-template-columns: 1fr;
                padding-left: 80px;
            }
            
            .process-number {
                left: 30px;
            }
            
            .process-step:nth-child(even) .process-content {
                order: 1;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            /*.coverage-content {
                grid-template-columns: 1fr;
            }*/
        }
        
        @media (max-width: 640px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .trust-stats {
                grid-template-columns: 1fr;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .coverage-zones {
                grid-template-columns: 1fr;
            }
        }


/* === FAQ Accordion SEO Content === */
.seo-content.faq {
  margin: 10px 0;
}

.seo-content.faq h2 {
  margin-bottom: 15px;
}

.seo-content.faq > .container > p {
  margin-bottom: 30px;
  max-width: 900px;
}

/* FAQ item */
.seo-content.faq .faq-item {
  border-bottom: 1px solid #e5e7eb;
}

/* Question */
.seo-content.faq .faq-item h3 {
  position: relative;
  margin: 0;
  padding: 18px 45px 18px 0;
  font-size: 1.05rem;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.4;
}

/* Answer */
.seo-content.faq .faq-content p {
  margin: 0 0 20px;
  padding-right: 40px;
  color: #374151;
}

/* Hover */
.seo-content.faq .faq-item h3:hover {
  color: #0b6fa4;
}
/* === FAQ Accordion SEO Content === */