/* =====================================================================
   Beer Events – LET'S TASTE!
   Paleta olivo derivada del nuevo logo (texto #66661e / fondo #eee9b2).
   Mismo formato que LET'S PARTY, con los verdes oscuros aclarados.
   ===================================================================== */

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--body-bg);
}

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

/* Compensa el header fijo al saltar a una sección */
section[id] { scroll-margin-top: 90px; }

/* ---- Paleta ---- */
:root {
    --primary-green: #6b6b20;       /* olivo del logo (titulares, header, CTA tablas) */
    --olive-mid:     #83832c;       /* degradado hero (parte superior, más claro) */
    --dark-green:    #565618;       /* olivo profundo (footer / fin de degradados) */
    --light-green:   #b6b25c;
    --logo-pale:     #eee9b2;       /* chartreuse pálido del fondo del logo */
    --accent-orange: #f49c3d;
    --accent-orange-dark: #d6751a;
    --accent-teal:   #5a9e72;
    --cream:         #f2eecf;       /* crema con matiz chartreuse (cajas y tarjetas) */
    --cream-soft:    #f8f5e2;       /* crema muy suave (fondos de sección) */
    --white:         #ffffff;
    --text-dark:     #333333;
    --text-light:    #6a6a52;
    --body-bg:       #fbf9ef;
}

/* ===================== HEADER ===================== */
.header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    border-bottom: 3px solid var(--logo-pale);
}
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo-image {
    height: 56px; width: auto;
    filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.28));
    transition: transform 0.3s ease;
}
.logo-image:hover { transform: scale(1.05); }

.nav { display: flex; gap: 2.5rem; align-items: center; }
.nav a {
    text-decoration: none; color: #fbf9ef; font-weight: 600; font-size: 1.1rem;
    padding: 8px 16px; border-radius: 25px; transition: all 0.3s ease;
    position: relative; text-transform: uppercase; letter-spacing: 1px;
}
.nav a:hover {
    color: var(--logo-pale);
    background-color: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}
.nav a:active { transform: translateY(0); }
.mobile-menu-btn { display: none; }

/* Grupo derecho de la cabecera (nav + selector de idioma) */
.header-right { display: flex; align-items: center; gap: 1.5rem; }
.lang-switch { display: flex; gap: 0.35rem; align-items: center; }
.lang-switch a {
    color: #fbf9ef; text-decoration: none; font-weight: 700; font-size: 0.85rem;
    padding: 4px 9px; border-radius: 6px; letter-spacing: 0.5px; line-height: 1;
    border: 1px solid rgba(255,255,255,0.4); transition: all 0.25s ease;
}
.lang-switch a:hover { background: rgba(255,255,255,0.15); color: var(--logo-pale); }
.lang-switch a.active { background: var(--logo-pale); color: var(--primary-green); border-color: var(--logo-pale); cursor: default; }

/* ===================== HERO ===================== */
.hero {
    background: linear-gradient(135deg, var(--olive-mid) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 46px 0 60px; text-align: center; margin-top: 70px;
    position: relative;
}
.hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
    background: var(--accent-orange);
}
.hero-title { font-size: 3rem; margin-bottom: 1rem; font-weight: bold; line-height: 1.2; letter-spacing: 0.5px; }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 0; opacity: 0.95; max-width: 820px; margin-left: auto; margin-right: auto; }
.hero-cta { margin-top: 2.2rem; }

/* ===================== BOTONES ===================== */
.btn {
    display: inline-block; padding: 15px 30px; text-decoration: none; border-radius: 8px;
    font-weight: bold; text-align: center; transition: all 0.3s; border: none; cursor: pointer;
    font-size: 1rem; min-height: 50px; box-sizing: border-box;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
.btn-primary {
    background-color: var(--accent-orange); color: #fff; border: 2px solid var(--accent-orange);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.btn-primary:hover {
    background-color: var(--accent-orange-dark); border-color: var(--accent-orange-dark);
    color: #fff; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(244,156,61,0.4);
}
.btn-secondary { background-color: transparent; color: var(--white); border: 2px solid var(--white); text-shadow: 1px 1px 2px rgba(0,0,0,0.4); }
.btn-secondary:hover { background-color: var(--white); color: var(--primary-green); text-shadow: none; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255,255,255,0.3); }
.exp-section .btn-secondary, .contact .btn-secondary { background-color: var(--white); color: var(--primary-green); border: 2px solid var(--white); text-shadow: none; }
.btn-large { padding: 20px 40px; font-size: 1.1rem; }

/* ===================== SERVICES (¿Qué te ofrecemos?) ===================== */
.services { padding: 80px 0; background-color: var(--white); }
.services h2 { text-align: center; font-size: 2.5rem; color: var(--primary-green); margin-bottom: 0.75rem; }
.services-subhead { text-align: center; font-size: 1.25rem; color: var(--accent-orange-dark); font-weight: bold; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2rem; }
.services-list { max-width: 820px; margin: 0 auto; }
.services-list .service-item { background-color: transparent; padding: 0.5rem 0; text-align: center; }
.services-list .service-item p { font-size: 1.15rem; line-height: 1.7; margin: 0; }
.more-info { text-align: center; margin: 2.5rem auto 0; padding: 2rem; background-color: var(--cream); border-radius: 12px; max-width: 820px; }
.more-info a { color: var(--accent-orange-dark); text-decoration: none; font-weight: bold; }
.more-info a:hover { text-decoration: underline; }

/* ===================== CÓMO FUNCIONA (5 pasos) ===================== */
.steps-section { padding: 80px 0; background-color: var(--cream-soft); }
.steps-section h2 { text-align: center; font-size: 2.5rem; color: var(--primary-green); margin-bottom: 3rem; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.5rem; }
.step { text-align: center; background-color: var(--white); padding: 2rem 1.25rem; border-radius: 15px; box-shadow: 0 6px 20px rgba(0,0,0,0.06); border-top: 4px solid var(--logo-pale); }
.step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%; background: var(--primary-green);
    color: #fff; font-weight: bold; margin-bottom: 0.75rem;
}
.step-icon { width: 96px; height: 96px; object-fit: contain; margin-bottom: 0.75rem; }
.step h4 { color: var(--primary-green); font-size: 1.1rem; margin-bottom: 0.6rem; }
.step p { font-size: 0.95rem; color: var(--text-light); }

/* ===================== ¿POR QUÉ FUNCIONA? ===================== */
.why-works { padding: 80px 0; background-color: var(--white); }
.why-works-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.why-works h2 { font-size: 2.4rem; color: var(--primary-green); margin-bottom: 1.5rem; }
.why-works-img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; border-radius: 18px; box-shadow: 0 12px 35px rgba(0,0,0,0.12); }
.check-list { list-style: none; }
.check-list li {
    background-color: var(--cream); padding: 1rem 1.1rem; margin: 0.75rem 0; border-radius: 10px;
    border-left: 4px solid var(--accent-teal); font-size: 1.05rem; display: flex; gap: 0.6rem; align-items: flex-start;
}
.check-list li::before { content: "✔"; color: var(--accent-teal); font-weight: bold; }

/* ===================== TARJETAS DE EXPERIENCIAS ===================== */
.experiences-cards { padding: 80px 0; background-color: var(--cream-soft); }
.experiences-cards h2 { text-align: center; font-size: 2.5rem; color: var(--primary-green); margin-bottom: 3rem; }
.cards-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.service-card { text-align: center; background-color: var(--white); padding: 1.5rem; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.10); transition: transform 0.3s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-10px); }
.service-image { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; margin-bottom: 1.25rem; }
.service-card h3 { color: var(--primary-green); font-size: 1.2rem; margin-bottom: 1.25rem; min-height: 2.8rem; display: flex; align-items: center; justify-content: center; }
.service-card .btn { margin-top: auto; }

/* ===================== DETALLE DE EXPERIENCIA ===================== */
.exp-section { padding: 80px 0; background-color: var(--white); }
.exp-section.alt { background-color: var(--cream-soft); }
.exp-section h2 { text-align: center; font-size: 2.4rem; color: var(--primary-green); margin-bottom: 0.75rem; }
.exp-lead { text-align: center; font-size: 1.25rem; color: var(--text-dark); max-width: 820px; margin: 0 auto 0.5rem; font-weight: 600; }
.exp-sub { text-align: center; font-size: 1.1rem; color: var(--text-light); max-width: 820px; margin: 0 auto 2rem; }
.exp-image { width: 100%; max-width: 760px; height: 380px; object-fit: cover; border-radius: 18px; margin: 1.5rem auto 2rem; display: block; box-shadow: 0 12px 35px rgba(0,0,0,0.12); }
.exp-desc { max-width: 820px; margin: 0 auto 2rem; font-size: 1.08rem; }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 920px; margin: 0 auto; }
.exp-box { background-color: var(--cream); padding: 1.75rem; border-radius: 15px; }
.exp-box h3 { color: var(--primary-green); font-size: 1.25rem; margin-bottom: 1rem; }
.exp-box ul { list-style: none; }
.exp-box li { padding: 0.4rem 0 0.4rem 1.6rem; position: relative; font-size: 1.02rem; }
.exp-box.includes li::before { content: "🍺"; position: absolute; left: 0; }
.exp-box.ideal li::before { content: "▸"; position: absolute; left: 0.2rem; color: var(--accent-orange); font-weight: bold; }

/* Precios */
.exp-price { max-width: 920px; margin: 2.5rem auto 0; text-align: center; }
.exp-price h3 { color: var(--primary-green); font-size: 1.3rem; margin-bottom: 1.25rem; }
.price-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; }
.price-tier { background: var(--white); border-radius: 14px; padding: 1.75rem 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-top: 5px solid var(--accent-orange); }
.price-tier .who { color: var(--text-light); font-size: 0.98rem; margin-bottom: 0.5rem; }
.price-tier .amount { color: var(--primary-green); font-size: 1.7rem; font-weight: bold; }
.price-tier .amount small { font-size: 0.95rem; font-weight: normal; color: var(--text-light); }
.price-single { display: inline-block; background: var(--primary-green); color: #fff; padding: 1.5rem 2.5rem; border-radius: 14px; font-size: 1.2rem; }
.price-single strong { font-size: 1.9rem; display: block; }
.exp-cta { text-align: center; margin-top: 2.5rem; }
.exp-note { text-align: center; font-size: 0.95rem; color: var(--text-light); font-style: italic; max-width: 760px; margin: 1rem auto 0; }
.exp-mini-note { text-align: center; font-size: 0.9rem; color: var(--text-light); max-width: 760px; margin: 0.5rem auto 0; }
.price-tier .amount.consult { font-size: 1.15rem; color: var(--text-light); }

/* ===================== OPCIONES (Personaliza) ===================== */
.options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; max-width: 920px; margin: 0 auto; }
.option-item { background: var(--white); padding: 1.1rem 1.25rem; border-radius: 10px; border-left: 4px solid var(--accent-teal); font-weight: 500; display: flex; gap: 0.6rem; align-items: center; }
.option-item::before { content: "✔"; color: var(--accent-teal); font-weight: bold; }

/* ===================== ¿POR QUÉ CONFIAR? ===================== */
.trust { padding: 80px 0; background-color: var(--primary-green); color: #fff; }
.trust h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; max-width: 1000px; margin: 0 auto; }
.trust-item { background: rgba(255,255,255,0.12); padding: 1.25rem 1.5rem; border-radius: 12px; font-size: 1.08rem; display: flex; gap: 0.7rem; align-items: center; border: 1px solid rgba(255,255,255,0.18); }
.trust-item::before { content: "✔"; color: var(--logo-pale); font-weight: bold; font-size: 1.2rem; }

/* ===================== FAQ ===================== */
.faq { padding: 80px 0; background-color: var(--white); }
.faq h2 { text-align: center; font-size: 2.5rem; color: var(--primary-green); margin-bottom: 3rem; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.faq-item { background-color: var(--cream); padding: 1.75rem; border-radius: 15px; }
.faq-item h4 { color: var(--primary-green); font-size: 1.12rem; margin-bottom: 0.75rem; }
.faq-item p { color: var(--text-dark); }

/* ===================== CONTACTO ===================== */
.contact { padding: 80px 0; background-color: var(--primary-green); color: var(--white); text-align: center; }
.contact h2 { font-size: 2.4rem; margin-bottom: 1rem; }
.contact > .container > p { font-size: 1.2rem; margin-bottom: 2.5rem; }
.contact-form { max-width: 640px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    padding: 15px; border: 2px solid transparent; border-radius: 8px; font-size: 1rem;
    background-color: var(--white); color: var(--text-dark); width: 100%; box-sizing: border-box; margin: 0;
    transition: border-color 0.3s;
}
.contact-form textarea { grid-column: 1 / -1; resize: vertical; min-height: 110px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--accent-orange); box-shadow: 0 0 0 3px rgba(244,156,61,0.25);
}
.contact-form input.error, .contact-form select.error, .contact-form textarea.error {
    border-color: #e74c3c; background-color: #fdf2f2; box-shadow: 0 0 0 3px rgba(231,76,60,0.2);
}
.contact-form .btn-large { width: auto; min-width: 260px; margin-top: 0.5rem; }

/* ===================== CARRUSEL ===================== */
.carousel-section { padding: 80px 0; background-color: var(--cream-soft); }
.carousel-section h2 { text-align: center; font-size: 2.5rem; color: var(--primary-green); margin-bottom: 3rem; }
.carousel { overflow: hidden; border-radius: 15px; }
.carousel-track { display: flex; gap: 1rem; animation: scroll 28s linear infinite; }
.carousel-image { width: 320px; height: 210px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===================== FOOTER ===================== */
.footer { background-color: var(--dark-green); color: var(--white); padding: 60px 0 20px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h3, .footer-section h4 { color: var(--logo-pale); margin-bottom: 1rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section a { color: var(--white); text-decoration: none; transition: color 0.3s; }
.footer-section a:hover { color: var(--accent-orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 2rem; text-align: center; }

.section-divider { border: none; height: 2px; background: linear-gradient(to right, transparent, var(--light-green), transparent); margin: 3rem 0; }

/* ===================== ACCESIBILIDAD ===================== */
.btn:focus { outline: 3px solid var(--accent-orange) !important; outline-offset: 2px !important; }
@media (prefers-reduced-motion: reduce) {
    .btn, .service-card, .carousel-track, .step { transition: none; animation: none; }
    .carousel-track { transform: none; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .why-works-grid { grid-template-columns: 1fr; }
    .why-works-img { max-height: 320px; }
}
@media (max-width: 768px) {
    .header { padding: 0.8rem 0; }
    .logo-image { height: 50px; }
    .nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
        flex-direction: column; padding: 1.5rem; gap: 1rem;
        border-bottom: 3px solid var(--logo-pale); box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    .nav.mobile-open { display: flex !important; }
    .nav a { text-align: center; padding: 12px 20px; border: 1px solid rgba(255,255,255,0.2); background-color: rgba(255,255,255,0.06); margin: 0; }
    .mobile-menu-btn {
        display: block !important; background: none; border: none; color: #fbf9ef; font-size: 1.5rem;
        padding: 8px; cursor: pointer; border-radius: 4px; transition: all 0.3s ease;
    }
    .mobile-menu-btn:hover { background-color: rgba(255,255,255,0.12); color: var(--logo-pale); }

    .hero { margin-top: 76px; padding: 38px 0 46px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }

    .exp-grid { grid-template-columns: 1fr; }
    .exp-image { height: 260px; }
    .form-row { grid-template-columns: 1fr; gap: 1rem; }
    .contact-form input, .contact-form select, .contact-form textarea { padding: 16px; }
    .contact-form .btn-large { width: 100%; }
    .cards-row { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero { padding: 30px 0 38px; }
    .hero-title { font-size: 1.6rem; }
    .service-card, .step, .faq-item { padding: 1.5rem; }
    .carousel-image { width: 250px; height: 160px; }
    .cards-row { grid-template-columns: 1fr; }
}
