/* ==========================================================================
   CSS Variables - Paleta de colores Luz Verde Eventos
   ========================================================================== */
:root {
    /* Colores principales de la marca */
    --brand-600: #1F4D3A;
    --brand-700: #173B2D;
    --brand-500: #2A6B50;
    --brand-400: #3D8A6A;
    --brand-300: #8FB7A6;
    --brand-200: #C5D9CF;
    --brand-100: #E8F1ED;

    /* Colores de acento */
    --accent-500: #C8A24A;
    --accent-600: #B38E3A;
    --accent-400: #D4B56A;
    --accent-300: #E0C88C;
    --accent-200: #ECDCAF;
    --accent-100: #F7F0D7;

    /* Rosa para toques románticos (usar con moderación) */
    --rose-500: #D9A5A5;
    --rose-400: #E0B7B7;
    --rose-300: #E8C9C9;
    --rose-200: #EFDBDB;
    --rose-100: #F7EDED;

    /* Colores neutros para sensación "cara/de lujo" */
    --bg: #F7F3EE;
    --surface: #FFFFFF;
    --surface-alt: #FCFAF7;
    --border: #E6DED5;
    --border-light: #F0EAE2;
    --border-dark: #D6CEC5;

    /* Colores de texto */
    --text: #1E1E1E;
    --text-muted: #6B6460;
    --text-light: #9C9590;
    --text-on-dark: #FFFFFF;
    --text-on-brand: #FFFFFF;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);

    /* Bordes redondeados */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Transiciones */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Tipografía */
    --font-sans: 'Helvetica Neue', Arial, sans-serif;
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-mono: 'Courier New', monospace;

    /* Espaciado */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
}

/* ==========================================================================
   Reset y estilos base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.luzverde-html {
    font-size: 16px;
    scroll-behavior: smooth;
}

.luzverde-body {
    font-family: var(--font-serif);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.luzverde-main {
    flex: 1;
}

.luzverde-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .luzverde-container {
        padding: 0 var(--space-xl);
    }
}

@media (min-width: 1200px) {
    .luzverde-container {
        padding: 0 var(--space-md);
    }
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.luzverde-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.luzverde-preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.luzverde-preloader-content {
    text-align: center;
}

.luzverde-preloader-logo {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: var(--space-xl);
}

.luzverde-preloader-logo .luzverde-logo-text {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-600);
    letter-spacing: -0.5px;
    line-height: 1;
}

.luzverde-preloader-logo .luzverde-logo-sub {
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 2px;
}

.luzverde-preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--brand-200);
    border-top-color: var(--brand-600);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   Tipografía
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--brand-600);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--brand-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-500);
}

strong {
    font-weight: 600;
}

/* ==========================================================================
   Componentes reutilizables
   ========================================================================== */

/* Botón de volver arriba */
.luzverde-back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    background-color: var(--brand-600);
    color: var(--text-on-brand);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.luzverde-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.luzverde-back-to-top:hover {
    background-color: var(--brand-700);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.luzverde-back-to-top .icon-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Divisor */
.luzverde-divider {
    height: 3px;
    width: 80px;
    background-color: var(--accent-500);
    margin: var(--space-xl) auto;
    border: none;
}

.luzverde-divider-left {
    margin-left: 0;
    margin-right: 0;
}

/* Botones */
.luzverde-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-align: center;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.luzverde-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.luzverde-btn:hover::before {
    left: 100%;
}

.luzverde-btn .icon-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform var(--transition-fast);
}

.luzverde-btn:hover .icon-svg {
    transform: translateX(4px);
}

.luzverde-btn-primary {
    background-color: var(--brand-600);
    color: var(--text-on-brand);
}

.luzverde-btn-primary:hover {
    background-color: var(--brand-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.luzverde-btn-secondary {
    background-color: var(--brand-300);
    color: var(--text);
}

.luzverde-btn-secondary:hover {
    background-color: var(--brand-400);
    color: var(--text-on-brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.luzverde-btn-accent {
    background-color: var(--accent-500);
    color: var(--text);
}

.luzverde-btn-accent:hover {
    background-color: var(--accent-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.luzverde-btn-outline {
    background-color: transparent;
    border-color: var(--brand-600);
    color: var(--brand-600);
}

.luzverde-btn-outline:hover {
    background-color: var(--brand-600);
    color: var(--text-on-brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.luzverde-btn-text {
    background: transparent;
    border: none;
    color: var(--brand-600);
    padding: var(--space-sm) 0;
}

.luzverde-btn-text:hover {
    color: var(--accent-500);
}

.luzverde-btn-text-small {
    font-size: 0.875rem;
}

.luzverde-btn-full {
    width: 100%;
}

.luzverde-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ==========================================================================
   Header y navegación
   ========================================================================== */
.luzverde-header {
    background-color: var(--surface);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.luzverde-header.scrolled {
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-md);
}

.luzverde-header .luzverde-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.luzverde-logo {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    z-index: 1001;
}

.luzverde-logo-text {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-600);
    letter-spacing: -0.5px;
    line-height: 1;
}

.luzverde-logo-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 2px;
}

.luzverde-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    z-index: 1001;
}

.luzverde-menu-toggle-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--brand-600);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.luzverde-menu-toggle[aria-expanded="true"] .luzverde-menu-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.luzverde-menu-toggle[aria-expanded="true"] .luzverde-menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.luzverde-menu-toggle[aria-expanded="true"] .luzverde-menu-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.luzverde-nav {
    transition: all var(--transition-base);
}

.luzverde-nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.luzverde-nav-link {
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-fast);
    position: relative;
    padding: var(--space-sm) 0;
}

.luzverde-nav-link:hover {
    color: var(--brand-600);
}

.luzverde-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-500);
    transition: width var(--transition-base);
}

.luzverde-nav-link:hover::after {
    width: 100%;
}

/* ==========================================================================
   Sección Hero
   ========================================================================== */
.luzverde-hero {
    padding: var(--space-4xl) 0 var(--space-3xl);
    background-color: var(--brand-100);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.luzverde-hero .luzverde-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.luzverde-hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.luzverde-hero-badge {
    display: inline-block;
    background-color: var(--accent-100);
    color: var(--accent-600);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    border: 1px solid var(--accent-200);
}

.luzverde-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s both;
}

.luzverde-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 1s ease 0.4s both;
}

.luzverde-hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.luzverde-hero-graphic {
    flex: 1;
    position: relative;
    height: 400px;
    display: none;
}

@media (min-width: 992px) {
    .luzverde-hero-graphic {
        display: block;
    }
}

.luzverde-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.luzverde-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.luzverde-hero-image:hover img {
    transform: scale(1.05);
}

.luzverde-hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(31, 77, 58, 0.3), transparent 40%);
}

.luzverde-hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.luzverde-hero-scroll-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--surface);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.luzverde-hero-scroll-link:hover {
    background-color: var(--brand-600);
    transform: translateY(-4px);
}

.luzverde-hero-scroll-link:hover .icon-svg {
    fill: var(--text-on-brand);
}

.luzverde-hero-scroll-link .icon-svg {
    width: 20px;
    height: 20px;
    fill: var(--brand-600);
    transition: fill var(--transition-base);
}

/* ==========================================================================
   Secciones generales
   ========================================================================== */
.luzverde-section {
    padding: var(--space-3xl) 0;
}

.luzverde-section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.luzverde-section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
}

.luzverde-bg-alt {
    background-color: var(--surface);
}

.luzverde-bg-brand {
    background-color: var(--brand-600);
    color: var(--text-on-brand);
}

.luzverde-bg-brand .luzverde-section-title,
.luzverde-bg-brand .luzverde-section-subtitle {
    color: var(--text-on-brand);
}

.luzverde-section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

/* ==========================================================================
   Sección Servicios
   ========================================================================== */
.luzverde-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.luzverde-service-card {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    height: 100%;
}

.luzverde-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.luzverde-service-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.luzverde-service-image {
    height: 180px;
    overflow: hidden;
}

.luzverde-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.luzverde-service-card:hover .luzverde-service-image img {
    transform: scale(1.1);
}

.luzverde-service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--brand-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto var(--space-lg);
    position: relative;
    z-index: 1;
    border: 4px solid var(--surface);
}

.luzverde-service-icon .icon-svg {
    width: 30px;
    height: 30px;
    fill: var(--brand-600);
}

.luzverde-service-title {
    font-size: 1.4rem;
    margin: 0 var(--space-xl) var(--space-md);
    color: var(--brand-600);
    text-align: center;
}

.luzverde-service-text {
    color: var(--text-muted);
    margin: 0 var(--space-xl) var(--space-lg);
    flex: 1;
    text-align: center;
}

.luzverde-service-list {
    list-style: none;
    margin: 0 var(--space-xl) var(--space-lg);
    padding: 0;
}

.luzverde-service-list li {
    padding-left: var(--space-lg);
    position: relative;
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
    text-align: left;
}

.luzverde-service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-500);
    font-size: 1.2rem;
}

.luzverde-service-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background-color: var(--accent-500);
    color: var(--text);
    font-size: 0.7rem;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luzverde-service-badge-new {
    background-color: var(--rose-500);
}

.luzverde-services-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    text-align: center;
    padding: var(--space-2xl);
    background-color: var(--brand-100);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-500);
}

@media (min-width: 768px) {
    .luzverde-services-cta {
        flex-direction: row;
        text-align: left;
    }
}

.luzverde-services-cta-content {
    flex: 1;
}

.luzverde-services-cta-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.luzverde-services-cta-text {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Sección Nosotros
   ========================================================================== */
.luzverde-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

@media (min-width: 992px) {
    .luzverde-about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.luzverde-about-text {
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    color: var(--text-muted);
}

.luzverde-about-list {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.luzverde-about-list-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.luzverde-about-list-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--accent-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.luzverde-about-list-icon .icon-svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-500);
}

.luzverde-about-list-content {
    flex: 1;
}

.luzverde-about-list-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--brand-600);
}

.luzverde-about-list-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.luzverde-location {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background-color: var(--brand-100);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--brand-600);
}

.luzverde-location-icon {
    flex-shrink: 0;
}

.luzverde-location-icon .icon-svg {
    width: 24px;
    height: 24px;
    fill: var(--brand-600);
}

.luzverde-location-text {
    font-weight: 600;
    color: var(--brand-600);
}

.luzverde-about-image {
    position: relative;
}

.luzverde-image-placeholder {
    height: 500px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.luzverde-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luzverde-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(31, 77, 58, 0.7), transparent 50%);
}

.luzverde-image-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(circle at 25% 25%, var(--rose-300) 2px, transparent 2px),
            radial-gradient(circle at 75% 75%, var(--accent-300) 2px, transparent 2px);
    background-size: 50px 50px;
    opacity: 0.2;
}

.luzverde-image-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--text-on-brand);
    z-index: 1;
}

.luzverde-image-badge {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    background-color: var(--surface);
    color: var(--brand-600);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.luzverde-image-text {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.luzverde-image-stats {
    display: flex;
    gap: var(--space-2xl);
}

.luzverde-image-stat {
    display: flex;
    flex-direction: column;
}

.luzverde-image-stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.luzverde-image-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ==========================================================================
   Sección Galería
   ========================================================================== */
.luzverde-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.luzverde-gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.luzverde-gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.luzverde-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.luzverde-gallery-item:hover .luzverde-gallery-image img {
    transform: scale(1.05);
}

.luzverde-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.luzverde-gallery-item:hover .luzverde-gallery-overlay {
    opacity: 1;
}

.luzverde-gallery-content {
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.luzverde-gallery-item:hover .luzverde-gallery-content {
    transform: translateY(0);
}

.luzverde-gallery-category {
    display: inline-block;
    background-color: var(--accent-500);
    color: var(--text);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.luzverde-gallery-caption {
    color: var(--text-on-brand);
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
}

.luzverde-gallery-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.luzverde-gallery-cta {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.luzverde-gallery-cta-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

/* ==========================================================================
   Sección Contacto
   ========================================================================== */
.luzverde-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

@media (min-width: 992px) {
    .luzverde-contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.luzverde-contact-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.luzverde-contact-details {
    margin-bottom: var(--space-xl);
}

.luzverde-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.luzverde-contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--accent-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.luzverde-contact-icon .icon-svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-500);
}

.luzverde-contact-content {
    flex: 1;
}

.luzverde-contact-item-title {
    font-size: 1rem;
    color: var(--brand-600);
    margin-bottom: var(--space-xs);
}

.luzverde-contact-item-text {
    color: var(--text-muted);
}

.luzverde-contact-map {
    margin-top: var(--space-xl);
}

.luzverde-map-placeholder {
    height: 200px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border);
}

.luzverde-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luzverde-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    background: rgba(31, 77, 58, 0.7);
}

.luzverde-map-text {
    text-align: center;
    font-weight: 600;
    color: var(--text-on-brand);
}

.luzverde-contact-form {
    background-color: var(--surface);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.luzverde-form-header {
    margin-bottom: var(--space-2xl);
}

.luzverde-form-title {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
    color: var(--brand-600);
}

.luzverde-form-subtitle {
    color: var(--text-muted);
}

.luzverde-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .luzverde-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.luzverde-form-group {
    margin-bottom: var(--space-lg);
}

.luzverde-form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-sans);
}

.luzverde-form-input,
.luzverde-form-select,
.luzverde-form-textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-serif);
    font-size: 1rem;
    background-color: var(--surface);
    color: var(--text);
    transition: all var(--transition-base);
}

.luzverde-form-input:focus,
.luzverde-form-select:focus,
.luzverde-form-textarea:focus {
    outline: none;
    border-color: var(--accent-500);
    box-shadow: 0 0 0 3px rgba(200, 162, 74, 0.1);
}

.luzverde-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.luzverde-form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: var(--space-xs);
    min-height: 20px;
}

.luzverde-form-footer {
    margin-top: var(--space-xl);
}

.luzverde-form-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
    text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.luzverde-footer {
    background-color: var(--brand-600);
    color: var(--text-on-brand);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.luzverde-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.luzverde-logo-footer .luzverde-logo-text,
.luzverde-logo-footer .luzverde-logo-sub {
    color: var(--text-on-brand);
}

.luzverde-footer-text {
    margin-top: var(--space-md);
    color: var(--brand-200);
    line-height: 1.6;
}

.luzverde-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.luzverde-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.luzverde-social-link:hover {
    background-color: var(--accent-500);
    transform: translateY(-3px);
}

.luzverde-social-link .icon-svg {
    width: 18px;
    height: 18px;
    fill: var(--text-on-brand);
}

.luzverde-footer-title {
    color: var(--text-on-brand);
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.luzverde-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-500);
}

.luzverde-footer-contact {
    list-style: none;
}

.luzverde-footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.luzverde-footer-contact-item .icon-svg {
    width: 16px;
    height: 16px;
    fill: var(--brand-200);
}

.luzverde-footer-list {
    list-style: none;
}

.luzverde-footer-list-item {
    margin-bottom: var(--space-sm);
    color: var(--brand-200);
    position: relative;
    padding-left: var(--space-md);
}

.luzverde-footer-list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-500);
}

.luzverde-footer-hours {
    list-style: none;
}

.luzverde-footer-hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
    color: var(--brand-200);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.luzverde-footer-hours-days {
    font-weight: 500;
}

.luzverde-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    text-align: center;
}

.luzverde-footer-copyright {
    color: var(--brand-200);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.luzverde-footer-link {
    color: var(--brand-200);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.luzverde-footer-link:hover {
    color: var(--accent-500);
}

.luzverde-footer-credits {
    color: var(--brand-300);
    font-size: 0.8rem;
}

/* ==========================================================================
   Estilos para contenido Hugo
   ========================================================================== */

/* Markdown body */
.markdown-body {
    font-family: var(--font-serif);
    line-height: 1.7;
    color: var(--text);
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
    font-family: var(--font-sans);
    color: var(--brand-600);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.markdown-body h1 {
    border-bottom: 2px solid var(--accent-500);
    padding-bottom: var(--space-sm);
}

.markdown-body h2 {
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--space-sm);
}

.markdown-body a {
    color: var(--brand-600);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.markdown-body a:hover {
    border-bottom-color: var(--accent-500);
}

.markdown-body ul,
.markdown-body ol {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.markdown-body li {
    margin-bottom: var(--space-sm);
}

.markdown-body blockquote {
    border-left: 4px solid var(--brand-300);
    padding-left: var(--space-lg);
    margin-left: 0;
    color: var(--text-muted);
    font-style: italic;
    background-color: var(--brand-100);
    padding: var(--space-lg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.markdown-body code {
    background-color: var(--bg);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.9em;
    color: var(--brand-600);
}

.markdown-body pre {
    background-color: var(--bg);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    overflow-x: auto;
    border-left: 3px solid var(--accent-500);
    margin-bottom: var(--space-lg);
}

.markdown-body pre code {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    color: inherit;
}

.markdown-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.markdown-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-lg);
}

.markdown-body th,
.markdown-body td {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border);
    text-align: left;
}

.markdown-body th {
    background-color: var(--brand-100);
    font-weight: 600;
    color: var(--brand-600);
}

/* Estilos para listas */
.luzverde-list-grid,
.luzverde-blog-grid,
.luzverde-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.luzverde-list-card,
.luzverde-blog-card,
.luzverde-related-card {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
}

.luzverde-list-card:hover,
.luzverde-blog-card:hover,
.luzverde-related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.luzverde-list-card-image,
.luzverde-blog-card-image,
.luzverde-related-card-image {
    height: 200px;
    overflow: hidden;
}

.luzverde-list-card-img,
.luzverde-blog-card-img,
.luzverde-related-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.luzverde-list-card:hover .luzverde-list-card-img,
.luzverde-blog-card:hover .luzverde-blog-card-img,
.luzverde-related-card:hover .luzverde-related-card-img {
    transform: scale(1.05);
}

.luzverde-list-card-caption,
.luzverde-blog-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--text-on-brand);
    padding: var(--space-md);
    font-size: 0.875rem;
}

.luzverde-list-card-body,
.luzverde-blog-card-body,
.luzverde-related-card-body {
    padding: var(--space-xl);
}

.luzverde-list-card-meta,
.luzverde-blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.luzverde-list-card-date,
.luzverde-blog-card-date,
.luzverde-related-card-date {
    color: var(--text-muted);
}

.luzverde-list-card-category,
.luzverde-blog-card-category {
    background-color: var(--brand-100);
    color: var(--brand-600);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.luzverde-list-card-title,
.luzverde-blog-card-title,
.luzverde-related-card-title {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.luzverde-list-card-link,
.luzverde-blog-card-link,
.luzverde-related-card-link {
    color: var(--brand-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.luzverde-list-card-link:hover,
.luzverde-blog-card-link:hover,
.luzverde-related-card-link:hover {
    color: var(--accent-500);
}

.luzverde-list-card-text,
.luzverde-blog-card-text,
.luzverde-related-card-text {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
}

.luzverde-list-card-footer,
.luzverde-blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-lg);
}

.luzverde-blog-card-author {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Artículos */
.luzverde-article-header {
    margin-bottom: var(--space-2xl);
}

.luzverde-article-categories {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.luzverde-article-category {
    background-color: var(--brand-100);
    color: var(--brand-600);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.luzverde-article-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.luzverde-article-meta {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.luzverde-article-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.luzverde-article-hero {
    margin-bottom: var(--space-2xl);
}

.luzverde-article-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.luzverde-article-hero-caption {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: var(--space-sm);
}

.luzverde-article-content {
    margin-bottom: var(--space-2xl);
}

.luzverde-article-footer {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.luzverde-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

.luzverde-article-tags-label {
    font-weight: 600;
    color: var(--text-muted);
}

.luzverde-article-tag {
    background-color: var(--brand-100);
    color: var(--brand-600);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.luzverde-article-tag:hover {
    background-color: var(--brand-600);
    color: var(--text-on-brand);
}

.luzverde-article-divider {
    height: 1px;
    background-color: var(--border);
    margin: var(--space-2xl) 0;
}

/* Artículos relacionados */
.luzverde-related {
    padding: var(--space-2xl) 0;
}

.luzverde-related-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: var(--space-sm);
}

.luzverde-related-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

/* Paginación */
.luzverde-pagination {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: var(--space-xs);
}

.page-item {
    margin: 0;
}

.page-link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--brand-600);
    text-decoration: none;
    transition: all var(--transition-base);
    min-width: 40px;
    text-align: center;
}

.page-link:hover {
    background-color: var(--brand-600);
    color: var(--text-on-brand);
    border-color: var(--brand-600);
}

.page-item.active .page-link {
    background-color: var(--brand-600);
    color: var(--text-on-brand);
    border-color: var(--brand-600);
}

/* ==========================================================================
   Animaciones
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes moveDots {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 30px 30px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .luzverde-hero-title {
        font-size: 2.5rem;
    }

    .luzverde-section-title {
        font-size: 2rem;
    }

    .luzverde-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .luzverde-btn {
        width: 100%;
        justify-content: center;
    }

    .luzverde-menu-toggle {
        display: flex;
    }

    .luzverde-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--surface);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all var(--transition-base);
        z-index: 999;
    }

    .luzverde-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .luzverde-nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--space-xl);
    }

    .luzverde-nav-link {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .luzverde-hero-title {
        font-size: 2rem;
    }

    .luzverde-hero-subtitle {
        font-size: 1.1rem;
    }

    .luzverde-section {
        padding: var(--space-2xl) 0;
    }

    .luzverde-container {
        padding: 0 var(--space-md);
    }

    .luzverde-form {
        padding: var(--space-lg);
    }
}

/* Impresión */
@media print {
    .luzverde-header,
    .luzverde-footer,
    .luzverde-hero-scroll,
    .luzverde-back-to-top,
    .luzverde-btn {
        display: none !important;
    }

    .luzverde-section {
        padding: 0 !important;
        margin: 0 !important;
    }

    .luzverde-hero {
        margin-top: 0;
        min-height: auto;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}