/* ========================================
   FUNNEL-OPTIMIZED CSS - Conversión + SEO
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --primary-dark: #5568d3;
    --secondary-color: #764ba2;
    --success-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main content wrapper para páginas internas */
main.container {
    background: white;
    margin: 0 auto;
    padding: 60px 20px;
}

/* ========================================
   HEADER - Navegación
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    line-height: 1.2;
}

.logo-text strong {
    font-size: 1.2rem;
    display: block;
}

.logo-text small {
    font-size: 0.85rem;
    color: var(--text-light);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.dropdown-btn:hover {
    color: var(--primary-color);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}

.dropdown-content .see-all {
    border-top: 1px solid #e5e7eb;
    font-weight: 600;
    color: var(--primary-color);
}

.btn-header-cta {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-header-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
}

.mobile-menu-header button {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.mobile-menu-item {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-menu-cta {
    background: var(--primary-color);
    color: white !important;
    font-weight: 600;
    margin: 1rem;
    border-radius: 8px;
    text-align: center;
}

/* ========================================
   FOOTER - Completo
   ======================================== */
.site-footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: white;
}

.footer-zones {
    display: flex;
    flex-direction: column;
  gap: 0.75rem;
}

.footer-zones a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.footer-zones a:hover {
  color: white;
}

.footer-zones .see-more {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 0.5rem;
  cursor: pointer;
}

.footer-zones .see-more:hover {
  color: #667eea;
  text-decoration: underline;
    margin-bottom: 0.75rem;
    color: #9ca3af;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-cta-link {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-info a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-info a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 20px;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* ========================================
   HERO SECTION - Above the Fold
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 140px 20px 80px; /* Increased padding-top to avoid header overlap */
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 40px;
    text-align: center;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-icon {
    font-size: 24px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--success-color);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.2);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-trust {
    font-size: 14px;
    opacity: 0.9;
    text-align: center;
    margin-top: 10px;
}

/* Hero Form Card */
.hero-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hero-form-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-form-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.mini-form input,
.mini-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.mini-form input:focus,
.mini-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-form {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-form:hover {
    background: var(--primary-dark);
}

/* ========================================
   MAP SECTION - CORREGIDO
   ======================================== */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.map-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.google-map {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    background: #f3f4f6;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 300px;
    z-index: 10;
}

.map-overlay h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.zone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zone-badge {
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-dark);
}

.zone-badge-more {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.map-cta {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
}

.map-cta a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* ========================================
   BENEFITS SECTION - CORREGIDO
   ======================================== */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   TESTIMONIALS SECTION - CORREGIDO
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    font-style: normal !important;
}

/* ========================================
   SERVICES SECTION - FONDO GRIS
   ======================================== */
.services {
    padding: 60px 0;
    background: var(--bg-light);
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.services ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.services li {
    background: white;
    padding: 20px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.services li:hover {
    transform: translateY(-2px);
}

.services li:before {
    content: '✓';
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

/* ========================================
   NEIGHBORHOODS SECTION - FONDO GRIS
   ======================================== */
.neighborhoods {
    padding: 80px 0;
    background: var(--bg-light);
}

.neighborhoods .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.neighborhoods h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.neighborhoods .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.neighborhood-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.neighborhood-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.neighborhood-card h3 {
    margin-bottom: 10px;
}

.neighborhood-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.neighborhood-card h3 a:hover {
    color: var(--primary-dark);
}

.neighborhood-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

/* ========================================
   CONTACT FORM - CORREGIDO
   ======================================== */
.contact-form {
    padding: 80px 0;
    background: white;
}

.contact-form .container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-form > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

#contactForm,
#footerContactForm {
    max-width: 100%;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Contenedor del botón del formulario - CENTRADO */
.form-button-container {
    text-align: center;
    margin-top: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
}

.hidden {
    display: none;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    margin: 10px 0;
    opacity: 0.8;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .benefits-grid,
    .testimonial-grid,
    .neighborhood-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-overlay {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
}

/* ========================================
   NEIGHBORHOOD PAGE SPECIFIC - CORREGIDO
   ======================================== */
.neighborhood-map {
    padding: 60px 0;
    background: white;
}

.neighborhood-map .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.neighborhood-map h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.neighborhood-map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map-info {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

/* Secciones de contenido de barrio */
article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section,
.local-info {
    margin-bottom: 40px;
}

.content-section h3,
.local-info h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.content-section p,
.local-info p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

aside.related {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

aside.related h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

aside.related p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.related-links {
    list-style: none;
    padding: 0;
}

.related-links li {
    margin-bottom: 10px;
}

.related-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.related-links a:hover {
    color: var(--primary-dark);
}

/* ========================================
   BREADCRUMB - Navegación contextual
   ======================================== */
.breadcrumb {
    background: white;
    padding: 15px 0;
    margin-top: 70px; /* Compensar header fijo */
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--text-light);
    user-select: none;
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 500;
}

/* Breadcrumb for neighborhood pages */
nav a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 1;
}

header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 30px 20px;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

header .tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

header .phone a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

header .whatsapp-btn {
    margin-top: 15px;
}

header .btn-whatsapp,
.btn-whatsapp {
    display: inline-block;
    background: #25d366 !important;
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

header .btn-whatsapp:hover,
.btn-whatsapp:hover {
    background: #1fb855 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ========================================
   FAQ SECTION - FONDO BLANCO
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-section > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: center !important;
    display: block !important;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer ul {
    margin: 10px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
        text-align: center !important;
        display: block !important;
    }
    
    .faq-item {
        padding: 20px;
    }
}

/* ========================================
   CTA BANNER - Intermedio en páginas de barrio
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px;
    margin: 60px 0;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.cta-banner-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-action {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-cta-large {
    background: white;
    color: var(--primary-color);
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-large .cta-icon {
    font-size: 1.5rem;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: background 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .cta-banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   SERVICES GRID - Para páginas de barrio
   ======================================== */
.services-detailed {
    padding: 60px 0;
    background: var(--bg-light);
    margin: 40px -20px;
}

.services-detailed h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   NEIGHBORHOOD FAQ - FAQ Interactivo
   ======================================== */
.neighborhood-faq {
    padding: 60px 0;
    background: white;
}

.neighborhood-faq h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    transition: background 0.3s;
}

.faq-item.active {
    background: white;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: center !important;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: block;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Respuestas siempre visibles - no usar acordeón */
.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   NEIGHBORHOOD CONTENT - Contenido expandido
   ======================================== */
.neighborhood-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.neighborhood-content h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.neighborhood-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.neighborhood-content p:last-child {
    margin-bottom: 0;
}

/* Servicios detallados en página de barrio */
.services-detailed {
    padding: 60px 0;
    background: white;
}

.services-detailed h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.services-detailed .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-detailed .service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s;
}

.services-detailed .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.services-detailed .service-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.services-detailed .service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Local info section */
.local-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.local-info h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.local-info p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

/* Related links section */
.related {
    padding: 40px 0;
    background: white;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.related h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.related p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.related-links {
    list-style: none;
    padding: 0;
}

.related-links li {
    margin-bottom: 10px;
}

.related-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.related-links a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE - Mobile
   ======================================== */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
        text-align: center !important;
        display: block !important;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* ========================================
   PÁGINAS LEGALES
   ======================================== */
.legal-page {
    padding: 100px 20px 60px;
    background: var(--bg-light);
    min-height: 100vh;
}

.legal-page .container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.legal-intro {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.legal-section p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.legal-section a:hover {
    border-bottom-color: var(--primary-color);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 80px 15px 40px;
    }
    
    .legal-page .container {
        padding: 2rem 1.5rem;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
}

/* Toggle mobile menu script */
<script>
function toggleMobileMenu() {
    const menu = document.getElementById('mobileMenu');
    menu.classList.toggle('active');
}
</script>
