/* === VARIABLES DE DISEÑO PREMIUM — CLUB PIOLA === */
:root {
    --negro-absoluto: #000000;
    --negro-suave: #0a0a0a;
    --blanco: #ffffff;
    --dorado: #C5A059; /* Dorado latón/oro viejo elegante */
    --fuente-principal: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

/* === RESET Y REGLAS GLOBALES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--negro-absoluto);
    color: var(--blanco);
    font-family: var(--fuente-principal);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* === HEADER Y NAVEGACIÓN === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 5%;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.header-logo-text {
    font-weight: 900;
    color: var(--dorado);
    font-size: 1.6rem;
    letter-spacing: 4px;
    text-decoration: none;
    transition: var(--transition);
}

/* MENÚ HAMBURGUESA */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2100;
}

.bar {
    width: 35px;
    height: 2px;
    background-color: var(--blanco);
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* MENÚ PANTALLA COMPLETA */
.full-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--negro-absoluto);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: var(--transition);
    z-index: 1500;
}

.full-menu.active {
    transform: translateY(0);
}

.menu-links {
    list-style: none;
    text-align: center;
}

.menu-links li {
    margin: 25px 0;
}

.menu-links a {
    color: var(--blanco);
    font-weight: 900;
    font-size: clamp(2.5rem, 10vw, 5rem);
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.menu-links a:hover {
    color: var(--dorado);
}

.menu-footer {
    position: absolute;
    bottom: 50px;
    color: var(--dorado);
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* === SECCIÓN 1: INICIO (HERO) — CENTRADO Y ANIMACIONES === */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center; /* Centro Horizontal */
    align-items: center;     /* Centro Vertical */
    background-color: var(--negro-absoluto);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column; /* Apila logo y leyenda verticalmente */
    align-items: center;     /* Fuerza el centrado horizontal de los hijos */
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    gap: 30px; /* Espacio entre logo y leyenda */
}

.main-logo-img {
    width: 85%;
    max-width: 500px; /* Tamaño controlado para PC */
    height: auto;
    display: block;
    margin: 0 auto; /* Centrado de seguridad */
    z-index: 10;
    /* === ANIMACIÓN LOGO RESTAURADA === */
    animation: zoomIn 1.8s ease-out;
}

.hero-caption {
    z-index: 5;
    /* === ANIMACIÓN LEYENDA RESTAURADA === */
    animation: fadeInSlideHero 2.5s ease;
}

.caption-text {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
    font-weight: 300;
    color: var(--dorado);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.caption-line {
    width: 50px;
    height: 1px;
    background-color: var(--dorado);
    margin: 0 auto 15px;
    opacity: 0.5;
}

.caption-location {
    font-size: 0.75rem;
    color: var(--blanco);
    opacity: 0.5;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

/* RESPONSIVE HERO MÓVIL */
@media (max-width: 768px) {
    .main-logo-img { max-width: 85%; }
}

/* === SECCIÓN 2: NOSOTROS (PARTÍCULAS FLOTANTES) === */
.about-animated {
    position: relative;
    padding: 80px 5%; /* Espacio reducido para pegar la siguiente sección */
    background-color: var(--negro-absoluto);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra todo el contenido de la sección Nosotros */
}

.about-title-simple {
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.gold { color: var(--dorado); }

.about-description {
    font-size: clamp(1rem, 3vw, 1.25rem);
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 50px;
    font-weight: 300;
}

/* IMAGEN INFERIOR (COLOR ORIGINAL CENTRADO) */
.about-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-footer-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: none; /* Asegurado en color original */
    transition: var(--transition);
}

.about-footer-img:hover {
    transform: scale(1.05);
}

/* === SECCIÓN 3: EXPERIENCIA (CARTELERA CON BOTONES) — CENTRADO CORREGIDO === */
.experience-section {
    padding: 40px 5% 100px; /* Menos espacio arriba para pegarla a Nosotros */
    background-color: var(--negro-suave); /* Fondo sutilmente diferente al negro absoluto */
    position: relative;
    margin-top: -1px; /* Evitar líneas blancas de unión */
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
}

.experience-header {
    text-align: center;
    margin-bottom: 50px;
}

.experience-title {
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.experience-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blanco);
    opacity: 0.5;
}

/* GRID DINÁMICO DE CARTAS */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 25px; /* Más espacio entre cartas */
}

.exp-card {
    background-color: #000;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.4s ease;
}

.exp-card:hover {
    border-color: var(--dorado);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* CONTENEDOR DE LA IMAGEN DEL CARTEL (CENTRADO ASEGURADO) */
.exp-img-box {
    position: relative;
    width: 100%;
    height: 380px; /* Altura fija para PC */
    background-color: #000;
    display: flex;
    justify-content: center; /* Centro Horizontal de la imagen */
    align-items: center;     /* Centro Vertical de la imagen */
}

.exp-img-box img {
    width: 100%;
    height: 100%;
    /* === CORRECCIÓN CONTAIN: MUESTRA EL CARTEL ENTERO SIN CORTAR === */
    object-fit: contain; 
    display: block;
    margin: 0 auto; /* Centrado de seguridad */
    transition: 0.5s ease;
}

/* ETIQUETA SOBRE LA IMAGEN */
.exp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--dorado);
    padding: 6px 15px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--dorado);
    border-radius: 4px;
    font-weight: 700;
    z-index: 5;
}

/* ÁREA INFERIOR DE LA CARTA (BOTÓN) */
.exp-action {
    padding: 20px;
    background: linear-gradient(to bottom, #050505, #000);
    text-align: center;
}

.btn-buy {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    background-color: transparent;
    color: var(--dorado);
    border: 1px solid var(--dorado);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-buy:hover {
    background-color: var(--dorado);
    color: #000;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

/* RESPONSIVE MÓVIL CARTAS */
@media (max-width: 768px) {
    .exp-img-box {
        height: 420px; /* Un poco más grande en móvil para que luzca el cartel entero */
    }
}

/* === ICONOS FLOTANTES DE FONDO (SECCIÓN NOSOTROS) === */
.floating-icons {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
}

.icon {
    position: absolute;
    color: var(--blanco);
    opacity: 0;
    font-size: 1.2rem;
    /* === ANIMACIÓN FLOTANTE INCLUIDA === */
    animation: floatParticlesUp 10s infinite linear;
}

/* Posiciones variadas para los iconos flotantes */
.icon:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.icon:nth-child(2) { top: 40%; left: 45%; animation-delay: 4s; }
.icon:nth-child(3) { top: 70%; left: 85%; animation-delay: 2s; }
.icon:nth-child(4) { top: 20%; left: 65%; animation-delay: 7s; }
.icon:nth-child(5) { top: 80%; left: 25%; animation-delay: 5s; }
.icon:nth-child(6) { top: 50%; left: 75%; animation-delay: 1s; }

/* === DEFINICIÓN DE TODAS LAS ANIMACIONES (@KEYFRAMES) === */

/* 1. Partículas flotantes que suben */
@keyframes floatParticlesUp {
    0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
    30% { opacity: 0.3; }
    70% { opacity: 0.3; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* 2. Zoom In suave para el logo principal */
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* 3. Fade In y Slide hacia arriba para la leyenda del hero */
@keyframes fadeInSlideHero {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === SECCIÓN CONTRATACIONES (EVENTOS PRIVADOS) === */
.booking-section {
    padding: 100px 5%;
    background-color: var(--negro-absoluto);
    position: relative;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
}

.booking-title {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.booking-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.6;
}

/* GRID DE CONTRATACIONES */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.booking-card {
    background-color: var(--negro-suave);
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-card:hover {
    border-color: var(--dorado);
    transform: translateY(-10px);
    background-color: #0f0f0f;
}

/* Resaltado para la tarjeta central (Bodas) */
.booking-card.highlight {
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.booking-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.booking-name {
    font-size: 1.8rem;
    text-transform: uppercase;
    color: var(--dorado);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.booking-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 35px;
    min-height: 80px; /* Alinea los botones */
}

/* BOTONES DE CONTRATACIÓN */
.btn-booking {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 15px 30px;
    border: 1px solid var(--dorado);
    color: var(--dorado);
    border-radius: 50px;
    transition: 0.3s ease;
}

.btn-booking:hover {
    background-color: var(--blanco);
    color: var(--negro-absoluto);
    border-color: var(--blanco);
}

.btn-booking.gold-bg {
    background-color: var(--dorado);
    color: var(--negro-absoluto);
}

.btn-booking.gold-bg:hover {
    background-color: var(--blanco);
    border-color: var(--blanco);
}

.booking-footer {
    text-align: center;
    margin-top: 60px;
    opacity: 0.5;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
/* ================================================================
   SECCIÓN CONTACTO Y NEWSLETTER (RECONSTRUIDA)
   ================================================================ */

.contact-section {
    padding: 100px 5% 60px;
    background-color: var(--negro-suave); /* Fondo sutilmente distinto */
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
    width: 100%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Para que sea responsivo en móviles */
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* --- BLOQUE DE INFORMACIÓN (IZQUIERDA) --- */
.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
}

.contact-subtitle {
    font-size: 1rem;
    opacity: 0.6;
    margin-bottom: 45px;
    letter-spacing: 1px;
    max-width: 400px;
}

/* LISTA DE CONTACTO */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Espaciado generoso entre items */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--blanco);
    font-size: 1.15rem;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-icon-svg {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon-svg svg {
    width: 100%;
    height: 100%;
    stroke: var(--dorado); /* Color base dorado */
    transition: 0.3s ease;
}

/* EFECTO HOVER EN ITEMS */
.contact-item:hover {
    color: var(--dorado);
    transform: translateX(15px);
}

.contact-item:hover .contact-icon-svg svg {
    stroke: var(--blanco); /* El icono se ilumina en blanco al pasar el mouse */
    transform: scale(1.1);
}

/* --- BLOQUE DE SUSCRIPCIÓN (DERECHA) --- */
.newsletter-box {
    flex: 1;
    min-width: 320px;
    background-color: var(--negro-absoluto);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.newsletter-title {
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--dorado);
    letter-spacing: 2px;
    font-weight: 900;
}

.newsletter-desc {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 35px;
    line-height: 1.5;
}

/* FORMULARIO */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    background: #0f0f0f;
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 18px 25px;
    border-radius: 12px;
    color: var(--blanco);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.newsletter-input:focus {
    border-color: var(--dorado);
    background-color: #1a1a1a;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.btn-subscribe {
    background-color: var(--dorado);
    color: var(--negro-absoluto);
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: var(--blanco);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.newsletter-privacy {
    margin-top: 20px;
    font-size: 0.75rem;
    opacity: 0.4;
    font-weight: 300;
}

/* --- FOOTER FINAL --- */
.main-footer {
    width: 100%;
    margin-top: 100px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.main-footer p {
    font-size: 0.75rem;
    opacity: 0.3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* RESPONSIVE AJUSTES */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-methods {
        align-items: center;
    }
    
    .contact-item:hover {
        transform: translateY(-5px); /* En móvil mejor subir que ir a la derecha */
    }
    
    .newsletter-box {
        width: 100%;
        padding: 40px 25px;
    }
}

/* === ESTILOS CRÉDITOS ESTUDIO WEB ZENITH CON LOGO REDONDO === */
.developer-credits {
    width: 100%;
    background-color: #030303; /* Negro casi absoluto */
    padding: 25px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.credits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dev-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* === LOGO REDONDO ZENITH === */
.dev-logo-round {
    width: 40px;  /* Ancho fijo para el círculo */
    height: 40px; /* Alto igual al ancho para círculo perfecto */
    border-radius: 50%; /* Recorte circular */
    object-fit: cover; /* Asegura que la imagen llene el círculo sin deformarse */
    display: block;
    filter: grayscale(1) brightness(1.2); /* Integración estética minimalista */
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 160, 89, 0.2); /* Borde dorado sutil */
}

.dev-logo-round:hover {
    filter: grayscale(0) brightness(1); /* Recupera color al pasar el mouse */
    opacity: 1;
    border-color: var(--dorado); /* Ilumina el borde dorado */
    transform: scale(1.05); /* Pequeño efecto de zoom */
}

/* DIVISOR Y TEXTO (Se mantienen) */
.dev-divider {
    width: 1px;
    height: 25px;
    background-color: rgba(197, 160, 89, 0.3);
}

.dev-text {
    font-size: 0.7rem;
    color: var(--blanco);
    opacity: 0.5;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
}

.dev-text strong {
    color: var(--dorado); /* Resalta el nombre del estudio */
    font-weight: 700;
}

.dev-year {
    font-size: 0.7rem;
    color: var(--blanco);
    opacity: 0.3;
    letter-spacing: 2px;
}

/* RESPONSIVE CRÉDITOS */
@media (max-width: 600px) {
    .credits-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .dev-brand {
        flex-direction: column;
        gap: 10px;
    }
    
    .dev-divider {
        display: none;
    }
}

/* === BOTÓN WHATSAPP FLOTANTE === */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--dorado); /* Color dorado del club */
    color: var(--negro-absoluto); /* Icono en negro para contraste */
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000; /* Por encima de todo, incluso del menú */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse-gold 2s infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    background-color: var(--blanco);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
}

/* Animación de pulso sutil */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(197, 160, 89, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

/* Ajuste para móviles para que no estorbe demasiado */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}

/* === ESTILOS COOKIE BANNER REFORZADOS === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #050505; /* Negro profundo */
    border-top: 2px solid #C5A059; /* Borde dorado Club Piola */
    padding: 25px 5%;
    z-index: 999999 !important; /* Prioridad máxima sobre WhatsApp y menús */
    display: none; /* El JS se encarga de mostrarlo */
    box-shadow: 0 -10px 30px rgba(0,0,0,0.8);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    font-size: 0.85rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.gold-link {
    color: #C5A059;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0; /* Evita que los botones se achiquen */
}

.btn-cookie {
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s all ease;
    border: 1px solid #C5A059;
    letter-spacing: 1px;
}

.btn-cookie.accept {
    background-color: #C5A059;
    color: #000000;
}

.btn-cookie.deny {
    background-color: transparent;
    color: #C5A059;
}

.btn-cookie:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* RESPONSIVE PARA MÓVILES */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .cookie-text {
        font-size: 0.8rem;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ================================================================
   NUEVA EXTENSIÓN: DETALLES DE TALLERES CON ICONOS SVG (CLUB PIOLA)
   ================================================================ */

.exp-action.details-extension {
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.taller-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dorado);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.taller-description {
    font-size: 0.9rem;
    color: var(--blanco);
    opacity: 0.7;
    line-height: 1.6;
    font-weight: 300;
}

.taller-schedule {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: rgba(197, 160, 89, 0.03);
    padding: 18px;
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--blanco);
    font-size: 0.85rem;
}

/* ESTILOS DE LOS ICONOS MODERNOS */
.icon-svg {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icon-svg svg {
    width: 100%;
    height: 100%;
    stroke: var(--dorado); /* Color dorado de la marca */
    stroke-width: 1.8;
    transition: 0.3s ease;
}

/* Efecto al pasar el mouse por la carta */
.exp-card:hover .icon-svg svg {
    stroke: var(--blanco);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.schedule-item .text {
    letter-spacing: 0.5px;
}

.exp-action.details-extension .btn-buy {
    margin-top: 10px;
    text-align: center;
}

/* --- ESTILOS PARA LA UBICACIÓN EN CONTACTO --- */

.contacto-item {
    margin-bottom: 30px;
}

.contacto-label {
    color: var(--dorado);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.maps-link {
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.maps-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 8px;
}

.address-text {
    font-style: normal;
    color: var(--blanco);
    line-height: 1.5;
    font-size: 1.1rem;
    font-weight: 300;
}

.icon-svg-gold {
    width: 24px;
    height: 24px;
    color: var(--dorado);
    flex-shrink: 0;
    margin-top: 4px;
}

.icon-svg-gold svg {
    width: 100%;
    height: 100%;
}

.maps-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--dorado);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: var(--transition);
    margin-left: 39px; /* Alineado con el inicio del texto de la dirección */
}

/* EFECTO HOVER: La dirección se ilumina al pasar el ratón */
.maps-link:hover .address-text {
    color: var(--dorado);
}

.maps-link:hover .maps-hint {
    opacity: 1;
    transform: translateX(5px);
}
/* --- ESTILO PARA EL LINK DE MAPS EN TALLERES --- */

.taller-maps-link {
    text-decoration: none; /* Quita el subrayado feo */
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.taller-maps-link .text {
    color: var(--blanco);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.taller-maps-link .maps-sub {
    font-size: 0.7rem;
    color: var(--dorado);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    opacity: 0.6;
    margin-top: 2px;
}

/* EFECTO AL PASAR EL RATÓN */
.taller-maps-link:hover .text {
    color: var(--dorado); /* La dirección cambia a dorado */
}

.taller-maps-link:hover .maps-sub {
    opacity: 1;
    padding-left: 5px; /* Pequeño movimiento de la flecha */
}
/* === ESTILOS PARA LOS NUEVOS ICONOS SVG EN EVENTOS === */

.booking-icon-svg {
    width: 60px;  /* Tamaño del contenedor del icono */
    height: 60px;
    margin-bottom: 30px; /* Espacio con el título */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dorado); /* === AQUÍ TEÑIMOS EL ICONO DE DORADO === */
    opacity: 0.9;
    transition: var(--transition);
}

.booking-icon-svg svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.2; /* Líneas finas y elegantes */
}

/* Efecto hover en la tarjeta: el icono brilla y sube sutilmente */
.booking-card:hover .booking-icon-svg {
    transform: translateY(-5px);
    opacity: 1;
    color: var(--blanco); /* El icono se vuelve blanco en hover */
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.5)); /* Brillo dorado sutil */
}

/* Ajuste responsive para iconos en móvil */
@media (max-width: 768px) {
    .booking-icon-svg {
        width: 50px;
        height: 50px;
        margin-bottom: 25px;
    }
}