:root {
    /* Nueva paleta sage green y cream elegante */
    --primary-color: #8a9a5b; /* Sage green */
    --secondary-color: #1a2f1a; /* Verde oscuro profundo */
    --accent-color: #b8a082; /* Cream/beige suave */
    --text-dark: #2d3a2d; /* Verde oscuro para texto */
    --text-light: #faf9f7; /* Cream muy claro */
    --text-muted: #718463; /* Verde grisáceo */
    --background-light: #faf9f7; /* Cream/ivory */
    --background-cream: #f5f4f0; /* Cream más cálido */
    --background-sage: #f0f2ed; /* Sage muy claro */
    --background-dark: #2d3a2d; /* Verde oscuro */
    --sage-light: #a8b89a; /* Sage más claro */
    --sage-medium: #8a9a5b; /* Sage principal */
    --sage-dark: #6b7a4f; /* Sage más oscuro */
    
    /* Tipografía elegante */
    --font-primary: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-secondary: 'DM Sans', 'Inter', 'Montserrat', sans-serif;
    
    /* Sombras y efectos */
    --shadow: 0 4px 6px rgba(45, 58, 45, 0.1);
    --shadow-hover: 0 8px 25px rgba(45, 58, 45, 0.15);
    --shadow-elegant: 0 10px 40px rgba(45, 58, 45, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-cream: #e8e6e1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    touch-action: manipulation;
    -ms-touch-action: manipulation;
}

body {
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

/* Optimización global de imágenes */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    max-width: 100%;
    height: auto;
}

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

/* Header - Estilo elegante y minimalista */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 249, 247, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-cream);
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.nav-logo h2 {
    font-family: var(--font-primary);
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sage-medium);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link:hover::after {
    width: 100%;
}


.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section - Diseño elegante con imagen única */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--background-cream);
}

/* Imagen de fondo única */
.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image-single {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.9;
    transition: var(--transition);
}

/* Mantener compatibilidad con diseños anteriores */
.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-image-left img {
    opacity: 0.6;
}

.hero-image-center img {
    opacity: 0.8;
}

.hero-image-right img {
    opacity: 0.6;
}

/* Overlay elegante */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(250, 249, 247, 0.65) 0%,
        rgba(250, 249, 247, 0.55) 50%,
        rgba(250, 249, 247, 0.65) 100%
    );
    background-color: rgba(255, 255, 255, 0.6); /* Increased opacity for better text visibility */
}

/* Contenido principal */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.hero-label {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 2rem;
    opacity: 1;
    transform: translateY(0);
}

.hero-title-italic {
    font-style: italic;
    color: var(--sage-medium);
}

.hero-description {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 1;
    transform: translateY(0);
}

/* Botones rediseñados */
.btn {
    padding: 16px 32px;
    border: none;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--sage-medium);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

.btn-secondary {
    background: transparent;
    color: var(--sage-medium);
    border: 1px solid var(--sage-medium);
}

.btn-secondary:hover {
    background: var(--sage-medium);
    color: var(--text-light);
}

/* Indicador de scroll elegante */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-scroll a {
    color: var(--sage-medium);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    transition: var(--transition);
}

.hero-scroll a:hover {
    color: var(--sage-dark);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Special Offer Section */
.special-offer {
    padding: 80px 0;
    background-image: url('fotografias/Compromiso/f1813679776.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
}

.special-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 249, 247, 0.65);
    z-index: 0;
}

.special-offer .container {
    position: relative;
    z-index: 1;
}

.offer-banner {
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.offer-badge i {
    animation: pulse 2s infinite;
}

.offer-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.offer-description p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.offer-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.offer-price {
    margin-top: 2rem;
}

.price-content {
    margin-bottom: 1.5rem;
}

.price-main {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.price-subtitle {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.btn-offer {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.btn-offer:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.offer-note {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 1rem;
}

.offer-visual {
    position: relative;
}

.offer-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 480px;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}

.offer-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(212, 175, 55, 0.9);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.offer-image:hover .offer-overlay {
    opacity: 1;
}

/* Animation keyframes */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Online Booking Section */
.booking {
    padding: 100px 0;
    background: var(--background-light);
}

.booking-content {
    margin-bottom: 4rem;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.booking-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.special-offer-booking {
    border-color: var(--accent-color);
    position: relative;
}

.special-offer-booking::before {
    content: 'OFERTA';
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.booking-header h3 {
    font-family: var(--font-primary);
    color: var(--text-dark);
    font-size: 1.5rem;
}

.price-tag {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.booking-features {
    margin-bottom: 2rem;
}

.booking-features p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.booking-features i {
    color: var(--primary-color);
    width: 20px;
}

.btn-booking {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-booking:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-booking.secondary {
    background: var(--secondary-color);
}

.btn-booking.secondary:hover {
    background: #1a252f;
}

/* Booking link styles */
.btn-booking {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-booking:hover {
    background: #c0392b;
    transform: translateY(-2px);
    color: white;
}

.btn-booking.secondary {
    background: var(--secondary-color);
    color: white;
}

.booking-widget {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.widget-header {
    text-align: center;
    margin-bottom: 2rem;
}

.widget-header h3 {
    font-family: var(--font-primary);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.widget-header p {
    color: #666;
}

.zoho-booking-container {
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.booking-modal-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.modal-info-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-info-content h4 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modal-info-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.booking-cta-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.booking-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.booking-fallback {
    text-align: center;
    padding: 2rem;
    border: 2px dashed #ddd;
    border-radius: 15px;
    background: #f9f9f9;
}

.fallback-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.fallback-content h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.booking-links {
    margin: 2rem 0;
}

.booking-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.quick-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-quick {
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid #ddd;
    transition: var(--transition);
}

.contact-quick:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.booking-benefits {
    text-align: center;
}

.booking-benefits h3 {
    font-family: var(--font-primary);
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.additional-services {
    margin-top: 4rem;
}

.additional-title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
}

.service-card.package {
    border: 2px solid #ddd;
}

.service-card.recommended {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.service-card.premium {
    border-color: var(--secondary-color);
}

.service-card.additional {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-card.premium .package-badge {
    background: var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card.recommended:hover {
    transform: scale(1.02) translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card.additional .service-icon {
    background: #6c757d;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section - Diseño elegante con filtros */
.gallery {
    padding: 120px 0;
    background: var(--background-sage);
}

.gallery .container {
    max-width: 100%;
    padding: 0 60px;
}

/* Filtros de galería */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 12px 24px;
    border: 1px solid var(--sage-light);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--sage-medium);
    color: var(--text-light);
    border-color: var(--sage-medium);
}

/* Grid de galería mejorado - 5 columnas */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    background: var(--background-light);
    box-shadow: var(--shadow);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                translate 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    translate: 0 40px;
    will-change: opacity, translate;
}

.gallery-item.visible {
    opacity: 1;
    translate: 0 0;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elegant);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    image-rendering: high-quality;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(138, 154, 91, 0.9) 0%,
        rgba(138, 154, 91, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-content {
    text-align: center;
    color: var(--text-light);
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-content h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.gallery-content p {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-top: 1rem;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
}

.contact-form {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 1rem;
    color: #bbb;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        touch-action: manipulation;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    /* Dropdown mobile */
    .nav-dropdown-menu {
        position: static;
        transform: none;
        background: var(--background-sage);
        border: none;
        border-radius: 0;
        box-shadow: none;
        min-width: auto;
        padding: 5px 0;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu li a {
        padding: 8px 24px;
        font-size: 0.8rem;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* Special offer responsive */
    .offer-banner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .offer-visual {
        order: -1;
    }

    .offer-image {
        height: 200px;
        max-width: 300px;
        margin: 0 auto;
    }

    .offer-title {
        font-size: 2rem;
    }

    .price-main {
        font-size: 2.5rem;
    }

    /* Booking section responsive */
    .booking-options {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 1.5rem;
    }

    .booking-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .booking-widget {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .quick-contact {
        flex-direction: column;
    }

    .widget-header h3 {
        font-size: 1.4rem;
    }

    /* Modal info responsive */
    .booking-modal-info {
        padding: 2rem;
    }

    .modal-info-content h4 {
        font-size: 1.5rem;
    }

    .booking-features-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .booking-cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0;
    }

    .gallery-item {
        aspect-ratio: 3/4;
        border-radius: 0;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .container {
        padding: 0 10px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0;
    }

    .gallery-item {
        aspect-ratio: 3/4;
        border-radius: 0;
    }

    .container {
        padding: 0 8px;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Configuration Modal Styles */
.config-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.config-content {
    background: white;
    margin: auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.config-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.config-close:hover {
    color: var(--accent-color);
}

.config-form {
    margin-top: 1rem;
}

.config-field {
    margin-bottom: 1rem;
}

.config-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.config-field input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.config-field input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.config-save-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    margin: 1rem 0;
    transition: var(--transition);
}

.config-save-btn:hover {
    background: #b8941f;
}

.config-instructions {
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.config-instructions h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.config-instructions ol {
    margin-left: 1rem;
}

.config-instructions li {
    margin-bottom: 0.5rem;
}

.config-instructions a {
    color: var(--primary-color);
    text-decoration: none;
}

.config-instructions a:hover {
    text-decoration: underline;
}

/* Footer booking buttons */
.footer-booking {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-booking-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.footer-booking-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* ==============================================
   ESTILOS PARA PÁGINAS ABOUT Y CONTACT
   ============================================== */

/* Navegación activa */
.nav-link.active {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-link.active::after {
    width: 100%;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-icon {
    font-size: 0.6rem;
    margin-left: 4px;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(250, 249, 247, 0.97);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-cream);
    border-radius: 8px;
    box-shadow: var(--shadow-elegant);
    list-style: none;
    padding: 10px 0;
    min-width: 220px;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
    color: var(--text-dark);
    background: var(--background-sage);
}

/* About Page Styles */
.about-hero {
    padding: 140px 0 80px;
    background: var(--background-cream);
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-story {
    padding: 120px 0;
    background: var(--background-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-elegant);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    padding: 2rem 0;
}

.about-description {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stat-item h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--sage-medium);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-family: var(--font-secondary);
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-philosophy {
    padding: 120px 0;
    background: var(--background-sage);
}

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

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.philosophy-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elegant);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: var(--sage-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.about-process {
    padding: 120px 0;
    background: var(--background-light);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--sage-light);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-number {
    width: 100px;
    height: 60px;
    background: var(--sage-medium);
    color: var(--text-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 10px;
}

.timeline-content h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.about-cta {
    padding: 100px 0;
    background: var(--sage-medium);
    text-align: center;
    color: var(--text-light);
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-hero {
    padding: 140px 0 80px;
    background: var(--background-cream);
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-main {
    padding: 120px 0;
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-elegant);
}

.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-cream);
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--background-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-medium);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.925rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--sage-light);
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text p {
    color: var(--text-muted);
    line-height: 1.4;
}

.contact-text small {
    font-size: 0.825rem;
    opacity: 0.8;
}

.contact-social h4 {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.25rem;
}

.social-link:hover {
    background: var(--sage-medium);
    color: var(--text-light);
    transform: translateY(-2px);
}

.contact-booking {
    margin-top: 1.5rem;
}

.contact-booking h4 {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-booking p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.925rem;
    line-height: 1.5;
}

.contact-faq {
    padding: 100px 0;
    background: var(--background-sage);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
}

.faq-item h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 25px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-right: 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .about-hero-content,
    .contact-hero-content {
        padding: 0 20px;
    }

    .about-stats {
        margin-top: 2rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .timeline-item {
        margin-bottom: 2rem;
    }

    .timeline-content {
        padding: 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

/* ==============================================
   ESTILOS PARA MODALES Y NOTIFICACIONES
   ============================================== */

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.gallery-modal .modal-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-modal .modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.gallery-modal img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-modal p {
    color: white;
    margin-top: 1rem;
    font-family: var(--font-secondary);
    font-size: 1.125rem;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    opacity: 0.7;
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.booking-modal .modal-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.booking-modal-header {
    background: var(--sage-medium);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.booking-modal-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.booking-modal-header p {
    opacity: 0.9;
}

.booking-modal-body {
    padding: 2rem;
}

.booking-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-sage);
    border-radius: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.info-item i {
    color: var(--sage-medium);
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--border-cream);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.booking-option:hover {
    border-color: var(--sage-medium);
    background: var(--background-sage);
}

.booking-option i {
    font-size: 1.5rem;
    color: var(--sage-medium);
    width: 30px;
}

.booking-option h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.booking-option p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--sage-medium);
}

.notification.success {
    border-left-color: #27ae60;
}

.notification.error {
    border-left-color: #e74c3c;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-secondary);
    color: var(--text-dark);
}

.notification-content i {
    font-size: 1.25rem;
}

.notification.success .notification-content i {
    color: #27ae60;
}

.notification.error .notification-content i {
    color: #e74c3c;
}

/* Form Error Styles */
.field-error {
    color: #e74c3c;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-family: var(--font-secondary);
}

/* Loading States */
.btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 0.5rem;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: opacity 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
}

.loader-content {
    text-align: center;
}

.loader-content h2 {
    font-family: var(--font-primary);
    color: var(--sage-medium);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--sage-light);
    border-top: 4px solid var(--sage-medium);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .booking-modal-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }

    .booking-modal-header {
        padding: 1.5rem;
    }

    .booking-modal-body {
        padding: 1.5rem;
    }

    .booking-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .booking-option {
        padding: 1rem;
    }

    .notification {
        left: 10px;
        right: 10px;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}
/* =========================================
   NUEVAS SECCIONES (BRIEFING 2026)
=========================================== */

/* Section label */
.section-label {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage-medium);
    margin-bottom: 0.5rem;
    display: block;
}

/* Paquetes Section */
.packages-section {
    padding: 80px 0;
    background: var(--background-cream);
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-elegant);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    border: 1px solid var(--border-cream);
}

.package-card.package-featured {
    border: 2px solid var(--sage-medium);
}

.package-badge-top {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sage-medium);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

.package-price {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--sage-medium);
    line-height: 1;
}

.package-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text-dark);
}

.package-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.package-features li i {
    color: var(--sage-medium);
    margin-top: 3px;
    flex-shrink: 0;
}

.packages-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* C�mo Funciona Section */
.how-it-works {
    padding: 80px 0;
    background: var(--background-sage);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sage-medium);
    color: white;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Qui�nes Somos Section */
.who-we-are {
    padding: 80px 0;
    background: white;
}

.who-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.who-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.who-text p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* 2027 Section */
.future-2027 {
    padding: 80px 0;
    background: var(--background-dark);
    color: var(--text-light);
}

.future-2027 .section-title {
    color: var(--text-light);
}

.future-2027 .section-subtitle {
    color: rgba(250,249,247,0.7);
}

.services-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 2rem 0;
}

.service-pill {
    background: rgba(250,249,247,0.1);
    border: 1px solid rgba(250,249,247,0.3);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.interest-form {
    max-width: 460px;
    margin: 0 auto;
}

.interest-form-inner {
    display: flex;
    gap: 0.75rem;
}

.interest-form input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(250,249,247,0.3);
    background: rgba(250,249,247,0.1);
    color: var(--text-light);
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
}

.interest-form input[type="email"]::placeholder {
    color: rgba(250,249,247,0.5);
}

.interest-confirmation {
    text-align: center;
    margin-top: 1rem;
    color: var(--sage-light);
    font-size: 0.95rem;
}

/* Zona de Trabajo Section */
.work-zones {
    padding: 80px 0;
    background: var(--background-cream);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.zone-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-cream);
}

.zone-card.zone-featured {
    border-color: var(--sage-medium);
    grid-column: 1 / -1;
    background: var(--background-sage);
}

.zone-card h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.zone-tag {
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--sage-medium);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
}

.zone-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.zones-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 760px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-cream);
    padding-bottom: 1.5rem;
}

.faq-question {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
    background: var(--background-sage);
    text-align: center;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-zones {
    margin-top: 2rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Responsive nuevas secciones */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zones-grid {
        grid-template-columns: 1fr;
    }

    .zone-card.zone-featured {
        grid-column: auto;
    }

    .interest-form-inner {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Landing Pages SEO Local
   ======================================== */

/* Landing Hero */
.landing-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.landing-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.landing-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.landing-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(250, 249, 247, 0.4) 0%,
        rgba(250, 249, 247, 0.75) 50%,
        rgba(250, 249, 247, 0.95) 100%
    );
    z-index: 2;
}

.landing-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 160px 40px 80px;
}

/* Landing Content */
.landing-content {
    padding: 80px 0 40px;
    background: var(--background-light);
}

.landing-intro {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}

.landing-intro p {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.venue-block {
    max-width: 780px;
    margin: 0 auto 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-cream);
}

.venue-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.venue-block h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.venue-block p {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.venue-block p:last-child {
    margin-bottom: 0;
}

/* Venue Photo */
.venue-photo {
    max-width: 780px;
    margin: 0 auto 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
}

.venue-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Landing CTA */
.landing-cta {
    padding: 80px 0;
    background: var(--background-sage);
}

.landing-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.landing-cta-text {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.landing-cta-content .hero-buttons {
    margin-top: 2.5rem;
}

/* Landing Zones (cross-links) */
.landing-zones {
    padding: 80px 0;
    background: var(--background-cream);
}

.zone-card.zone-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.zone-card.zone-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sage-medium);
}

.zone-card.zone-link h3 {
    color: var(--text-dark);
}

.zone-card.zone-link p {
    color: var(--text-muted);
}

/* Landing Responsive */
@media (max-width: 768px) {
    .landing-hero {
        min-height: 55vh;
    }

    .landing-hero-content {
        padding: 130px 20px 60px;
    }

    .landing-content {
        padding: 60px 0 20px;
    }

    .landing-intro {
        margin-bottom: 40px;
    }

    .venue-block {
        margin-bottom: 35px;
        padding-bottom: 35px;
    }

    .landing-cta {
        padding: 60px 0;
    }

    .landing-zones {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .landing-hero {
        min-height: 50vh;
    }

    .landing-hero-content {
        padding: 120px 15px 40px;
    }

    .landing-intro p {
        font-size: 1.05rem;
    }

    .venue-block h2 {
        font-size: 1.4rem;
    }

    .venue-block p {
        font-size: 0.95rem;
    }

    .landing-cta-text {
        font-size: 1rem;
    }
}
