/* Variables CSS: Paleta Zen & Standard Combo Settings */
:root {
    --color-green: #6b8e23;       /* Verde Oliva Base */
    --color-green-light: #8fbc8f; /* Variante Clara Zen */
    --color-green-dark: #74a062;  /* Verde intermedio sutil */
    --color-cream: #f5f5dc;       /* Crema de fondo */
    --color-cream-dark: #ebebd2;  /* Crema oscuro para bordes y footer */
    --color-text: #2c3e50;        /* Texto oscuro, suave */
    --color-text-light: #5a6c7d;  /* Texto secundario */
    --color-white: #ffffff;
    
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --radius-lg: 30px; /* Tarjetas y Hero a 30px */
    --radius-md: 12px;
    --radius-sm: 8px;
    
    --shadow-soft: 0 10px 30px rgba(107, 142, 35, 0.08); /* Sombra muy sutil */
    --shadow-hover: 0 15px 40px rgba(107, 142, 35, 0.15);
    
    --transition-fast: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    /* Degradado muy suave de crema a blanco como patrón orgánico */
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* Fondo Global Logo Hoja */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 660px; /* Tamaño del logo aumentado 10% */
    height: 660px;
    background-image: url('../assets/img/logo_hoja_completo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.65; /* Aumentado para mayor presencia */
    z-index: -1; /* Detrás de todo el contenido */
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-green);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Navbar Sticky */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    padding: 0.5rem 0 0.2rem; /* Distancias verticales al mínimo */
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.2rem 0 0.1rem;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.2rem; /* Prácticamente sin separación entre logo y menú */
}

.logo a {
    /* TODO: Reemplazar 'Cinzel' por 'Arsenica' cuando la fuente esté disponible */
    font-family: 'Cinzel', 'Libre Caslon Display', serif;
    font-style: normal;
    font-size: 2.8rem; /* Tipografía del logo bastante más chica */
    font-weight: 600; 
    color: var(--color-green);
    line-height: 1;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo a {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem; 
    margin-bottom: 0.5rem; /* Margen final minimizado */
}

.nav-links a {
    font-weight: 500;
    font-size: 0.8rem; /* Tamaño de menú más sutil */
    letter-spacing: 2px;
    text-transform: lowercase;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-green);
    transition: width var(--transition-fast);
}

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

.nav-links a:hover {
    color: var(--color-green);
}

/* Language Selector */
.lang-selector {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 1010;
}

.lang-selector a {
    text-decoration: none;
    font-size: 1.4rem;
    opacity: 0.4;
    transition: all var(--transition-fast);
    filter: grayscale(80%);
}

.lang-selector a.active {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.15);
}

.lang-selector a:hover {
    opacity: 0.8;
    filter: grayscale(20%);
}

@media (max-width: 768px) {
    .lang-selector {
        right: 1rem;
        top: 1.5rem;
        transform: none;
    }
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Ligeramente más claro para que no opaque tanto el fondo */
    z-index: 3;
    pointer-events: none;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-slider .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 75% !important;
    opacity: 1;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.hero-slider.scrolled .slide-bg {
    opacity: 0.85; /* Baja la opacidad al deslizar para ver el logo */
}

@media (max-width: 768px) {
    .hero-slider .slide-bg {
        background-position: center 75% !important;
    }
}

.hero-slider .hero-content {
    position: relative;
    z-index: 3;
    padding: 0 1.5rem;
    text-align: center;
    max-width: 800px;
    opacity: 0; /* Oculto inicialmente */
    transform: translateY(15px); /* Desplazado un poco hacia abajo */
    transition: opacity 1s ease, transform 1s ease;
}

.hero-slider .slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s; /* El texto entra 600ms después que el fondo */
}

.hero-slider h1 {
    font-family: 'Arsenica', 'Cinzel', serif;
    font-size: 3.5rem;
    color: #f5f5dc;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: var(--color-green-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 142, 35, 0.25);
}

/* About Me Section */
.about-section {
    position: relative;
    padding: 6rem 0;
    color: var(--color-white);
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.about-section.scrolled .about-bg {
    opacity: 0.85;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.about-image-wrapper {
    flex: 0 0 250px;
}

.about-profile-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--color-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform var(--transition-fast);
}

.about-profile-img:hover {
    transform: scale(1.02);
}

.about-text-card {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    background: rgba(245, 245, 220, 0.85); /* Crema traslúcido */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-cream-dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-green);
    text-shadow: none;
    font-family: var(--font-heading);
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    font-weight: 400;
    text-shadow: none;
}

/* Services Section */
.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    position: relative;
    min-height: 1px; /* Asegura que el contenedor exista para el pseudo-elemento */
    color: var(--color-green-dark);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-green-dark);
    margin: 1rem auto 0;
    border-radius: 2px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.9); /* Traslúcido para ver el logo debajo */
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 25px; /* Radio redondeado requerido */
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.08); /* Sombra suave y difuminada */
    text-align: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    display: flex;
    flex-direction: column;
    border: none;
}

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

.service-icon {
    font-size: 3.5rem;
    color: var(--color-green-light);
    margin-bottom: 1.5rem;
    transition: color var(--transition-fast);
}

.service-card:hover .service-icon {
    color: var(--color-green);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading); /* Playfair Display */
    color: var(--color-green); /* Verde Hoja */
}

.service-features {
    text-align: left;
    margin-bottom: 1rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-family: var(--font-main); /* Montserrat */
    font-weight: 300; /* Más liviana */
}

.service-features li {
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.2rem;
    font-weight: bold; /* Bold */
    color: #55721c; /* Verde sutilmente más oscuro que el verde hoja regular */
    padding-top: 1.5rem;
    margin-bottom: 1rem;
    border-top: 1px dashed var(--color-cream-dark);
}

.btn-whatsapp {
    display: inline-block;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 600;
    margin-top: auto; /* Empuja el botón al final de la flex container */
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.btn-whatsapp:hover {
    background-color: var(--color-green-light);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Social Button */
.social-btn {
    display: inline-block;
    background-color: var(--color-green-light);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    margin-top: 1rem;
    transition: background-color var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--color-green);
    color: var(--color-white);
}

/* Footer Section Custom */
.custom-footer {
    background-color: #385131; /* Verde oscuro solido tipo Zen */
    padding: 1.5rem 1rem;
    text-align: center;
    border: none;
    margin-top: auto;
    transition: all 0.3s ease;
}

.custom-footer.scrolled {
    padding: 0.8rem 1rem;
    background-color: #2e4428; /* Un tono un poquito más oscuro al scrollear */
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-title {
    font-family: 'Cinzel', 'Libre Caslon Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #f6f6e5;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.custom-footer.scrolled .footer-title {
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}

.footer-copy {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.85rem;
    color: #dadaba;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.custom-footer.scrolled .footer-copy {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-nav {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.footer-nav .footer-link {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.9rem;
    color: #dadaba;
    text-decoration: none;
    padding-bottom: 4px;
    transition: color var(--transition-fast), border-bottom var(--transition-fast);
}

.footer-nav .footer-link:hover {
    color: #ffffff;
}

.footer-nav .footer-link.active {
    color: #dadaba;
    border-bottom: 1px solid rgba(130, 100, 110, 0.6); /* Underline sutil color malva */
}

.footer-icons {
    display: flex;
    gap: 1.4rem;
    color: #a1c297; /* Verde claro pastel */
    align-items: center;
    font-size: 1.2rem;
}

.footer-icons i {
    transition: transform var(--transition-fast), color var(--transition-fast);
    cursor: pointer;
}

.footer-icons i:hover {
    transform: translateY(-3px);
    color: #d1ecd9;
}
/* Responsividad */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        
        /* Break out of container to edge-to-edge scroll */
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 1rem 5vw 2rem 5vw; 
        
        /* Hide scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .services-grid::-webkit-scrollbar {
        display: none;
    }
    .service-card {
        flex: 0 0 85%;
        max-width: 320px;
        scroll-snap-align: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-slider h1 {
        font-size: 2.2rem;
    }
    
    .hero-slider .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .footer-grid {
        text-align: center;
        gap: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
}

/* ==========================================================================
   Sección de Talleres & Tarjetas (Cards)
   ========================================================================== */
.talleres {
    background-color: var(--color-cream);
    padding: 6rem 0;
}

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

.taller-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-fast);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(107, 142, 35, 0.08);
}

.taller-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-green-light);
}

.taller-flyer-container {
    position: relative;
    width: 100%;
    height: 250px; /* Tamaño vertical fijo para no depender de la proporción de la imagen */
    overflow: hidden;
    background-color: #f0f0f0;
}

.taller-flyer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.taller-card:hover .taller-flyer {
    transform: scale(1.04);
}

.taller-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}

.taller-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.taller-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-green);
    font-family: var(--font-heading);
    line-height: 1.3;
}

.taller-date {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.taller-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.taller-price span {
    font-size: 1rem;
    font-weight: 500;
    margin-right: 2px;
}

.btn-taller {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

/* Grilla para talleres pasados */
.taller-card-past {
    box-shadow: none;
    border: 1px solid var(--color-cream-dark);
    background: rgba(255, 255, 255, 0.6);
}

.taller-card-past .taller-flyer {
    filter: grayscale(100%) opacity(0.65);
}

.taller-card-past:hover .taller-flyer {
    filter: grayscale(80%) opacity(0.85);
}

.taller-card-past .taller-info h3 {
    color: var(--color-text-light);
}

/* ==========================================================================
   Hero Slider Taller Destacado
   ========================================================================== */
.slide-taller {
    display: flex;
    align-items: center;
    justify-content: center;
}

.taller-hero-content {
    width: 90%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.taller-hero-card {
    display: flex;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    width: 100%;
    max-height: 80vh;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.taller-hero-card:hover {
    transform: scale(1.01);
    border-color: rgba(255, 255, 255, 0.45);
}

.taller-hero-img-container {
    width: 45%;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.taller-hero-flyer {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.taller-hero-card:hover .taller-hero-flyer {
    transform: scale(1.05);
}

.taller-hero-info {
    width: 55%;
    padding: 3rem;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.taller-hero-badge {
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.taller-hero-info h2 {
    font-size: 2.5rem;
    color: var(--color-white);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    line-height: 1.25;
}

.taller-hero-date {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-hero-taller {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
}

/* ==========================================================================
   Modal de Detalles de Taller (Premium Zoom & Slide)
   ========================================================================== */
.modal-taller-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-taller-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 25, 10, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-taller-content {
    position: relative;
    z-index: 2010;
    background-color: var(--color-white);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(107, 142, 35, 0.15);
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
}

.modal-taller-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.85);
    border: none;
    font-size: 2.2rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--color-text);
    cursor: pointer;
    z-index: 2020;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.modal-taller-close:hover {
    background: var(--color-green);
    color: var(--color-white);
    transform: rotate(90deg);
}

.modal-taller-body {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.modal-taller-image-container {
    width: 45%;
    background-color: #f5f5f5;
    position: relative;
}

.modal-taller-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-taller-details {
    width: 55%;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
}

.modal-taller-details h2 {
    font-size: 2.2rem;
    color: var(--color-green);
    font-family: var(--font-heading);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.modal-taller-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-cream-dark);
}

.modal-meta-item {
    font-size: 0.95rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-meta-item span {
    font-weight: 600;
    color: var(--color-text);
}

.modal-taller-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.modal-taller-action {
    margin-top: auto;
}

.btn-reservar {
    display: inline-block;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(107, 142, 35, 0.2);
    transition: all var(--transition-fast);
}

.btn-reservar:hover {
    background-color: var(--color-green-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 142, 35, 0.3);
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   Media Queries para Adaptabilidad
   ========================================================================== */
@media (max-width: 992px) {
    .taller-hero-card {
        max-height: none;
    }
    
    .modal-taller-content {
        max-width: 650px;
    }
    
    .modal-taller-body {
        flex-direction: column;
    }
    
    .modal-taller-image-container,
    .modal-taller-details {
        width: 100%;
    }
    
    .modal-taller-image-container {
        height: 350px;
    }
    
    .modal-taller-details {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .taller-hero-card {
        flex-direction: column;
    }
    
    .taller-hero-img-container,
    .taller-hero-info {
        width: 100%;
    }
    
    .taller-hero-img-container {
        height: 280px;
    }
    
    .taller-hero-info {
        padding: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .taller-hero-info h2 {
        font-size: 1.8rem;
    }
    
    .taller-hero-date {
        justify-content: center;
    }
    
    .talleres-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .modal-taller-close {
        top: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .modal-taller-image-container {
        height: 260px;
    }
    
    .modal-taller-details {
        padding: 2rem 1.5rem;
    }
    
    .modal-taller-details h2 {
        font-size: 1.6rem;
    }
    
    .modal-taller-meta {
        flex-direction: column;
        gap: 0.5rem;
        padding-bottom: 1rem;
    }
}
