/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c59d5f;
    --gold-dark: #a57c3f;
    --bg: #0f0f0f;
    --bg-card: #1a1a1a;
    --bg-card2: #111;
    --text: #fff;
    --text-muted: #aaa;
    --header-h: 80px;
}

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

/* ================= CONTAINER ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-h);
}

.logo img {
    width: 200px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

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

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

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

/* BOTÓN HAMBURGUESA */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 2px;
    background: white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* ================= HERO ================= */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1565299585323-38d6b0865b47?w=1600&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 0 20px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    border: 1px solid var(--gold);
    padding: 5px 14px;
    border-radius: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 600;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

/* REVEAL ANIMATION - HERO */
.reveal-hero {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.3s;
}

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

/* ================= BOTONES ================= */
.btn {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 13px 28px;
    text-decoration: none;
    margin: 5px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--gold);
    padding: 11px 26px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    margin: 5px;
}

.btn-outline:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* ================= REVEAL SCROLL ================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ================= SECTION TITLES ================= */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 8px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ================= MENU SECTION ================= */
.menu-section {
    padding: 100px 0 60px;
}

/* FILTROS */
.menu-filters {
    margin-bottom: 40px;
    position: relative;
}

.filters-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
    -webkit-overflow-scrolling: touch;
}

.filters-scroll::-webkit-scrollbar {
    height: 4px;
}

.filters-scroll::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

.filter-btn {
    flex-shrink: 0;
    background: var(--bg-card);
    color: var(--text-muted);
    border: 1px solid #333;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    font-weight: 600;
}

/* GRID DE ITEMS */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    animation: fadeIn 0.35s ease;
}

.menu-grid.hidden {
    display: none;
}

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

.menu-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #222;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.menu-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.menu-card:hover .menu-img img {
    transform: scale(1.04);
}

.menu-content {
    padding: 18px;
}

.menu-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
}

.menu-content span {
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 6px;
}

.menu-content p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* NOTA DENTRO DEL GRID */
.menu-note,
.menu-price-note {
    grid-column: 1 / -1;
    color: var(--text-muted);
    font-size: 13px;
    padding: 10px 14px;
    background: #1e1e1e;
    border-left: 3px solid var(--gold);
    border-radius: 4px;
}

.menu-price-note {
    font-weight: 600;
    color: var(--gold);
    font-size: 14px;
}

/* CARTA DE VINOS - lista de precios */
.menu-card--list .menu-img img {
    height: 160px;
}

.price-list {
    list-style: none;
    margin-top: 10px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #2a2a2a;
    font-size: 13px;
    color: var(--text-muted);
    gap: 10px;
}

.price-list li span:last-child {
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}

/* ================= EXPERIENCIA ================= */
.experience-section {
    padding: 100px 0;
    background: #111;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.experience-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.8;
}

.experience-images img {
    width: 100%;
    margin-bottom: 12px;
    border-radius: 12px;
    object-fit: cover;
    height: 220px;
    transition: transform 0.3s;
}

.experience-images img:hover {
    transform: scale(1.01);
}

/* ================= GALERIA ================= */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s, filter 0.3s;
    filter: brightness(0.9);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}

/* ================= TESTIMONIOS ================= */
.testimonials {
    padding: 80px 0;
    background: var(--bg-card);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.testimonial {
    background: var(--bg-card2);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #222;
}

.stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial p {
    color: var(--text-muted);
    font-size: 15px;
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.7;
}

.testimonial span {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

/* ================= CONTACTO ================= */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.contact-info h3 {
    margin-top: 18px;
    margin-bottom: 5px;
    font-size: 15px;
    color: var(--gold);
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}

.contact-actions .btn,
.contact-actions .btn-outline {
    text-align: center;
    margin: 0;
}

.map-container {
    grid-column: 1 / -1;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 10px;
    border: 1px solid #222;
}

/* ================= FOOTER ================= */
.footer {
    background: #000;
    padding: 60px 0 24px;
    border-top: 1px solid #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--gold);
    margin-bottom: 14px;
    font-size: 15px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 14px;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    font-size: 13px;
    color: #555;
}

/* ================= WHATSAPP FLOTANTE ================= */
.whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 26px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 999;
}

.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    /* BURGER */
    .burger {
        display: flex;
    }

    /* MENÚ MÓVIL */
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--header-h);
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.97);
        text-align: center;
        padding: 30px 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        padding: 14px 0;
        border-bottom: 1px solid #1a1a1a;
    }

    .nav-links a {
        font-size: 16px;
    }

    /* HERO */
    .hero h1 {
        font-size: 34px;
    }

    /* GRIDS */
    .experience-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

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

    .map-container {
        grid-column: 1;
    }

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

    .gallery-grid img {
        height: 160px;
    }

    /* WHATSAPP: no tapar nada en móvil */
    .whatsapp {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

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

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

/* ================= SPLASH SCREEN ================= */
.splash-screen {
    position: fixed;
    inset: 0;
    background: #0f0f0f;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-inner {
    text-align: center;
}

.splash-logo {
    font-size: 56px;
    margin-bottom: 12px;
    animation: splashBounce 0.8s ease forwards;
}

.splash-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.3s;
}

.splash-bar {
    width: 160px;
    height: 2px;
    background: #222;
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.4s ease forwards 0.5s;
}

.splash-progress {
    height: 100%;
    width: 0%;
    background: var(--gold);
    border-radius: 2px;
    animation: splashLoad 1.2s ease forwards 0.6s;
}

@keyframes splashBounce {
    0%   { opacity: 0; transform: scale(0.5); }
    60%  { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes splashLoad {
    to { width: 100%; }
}

/* ================= HERO STATUS ================= */
.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.hero-status .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #aaa;
    flex-shrink: 0;
}

.hero-status.open .status-dot  { background: #25D366; box-shadow: 0 0 6px #25D366; animation: pulse 2s infinite; }
.hero-status.closed .status-dot { background: #e74c3c; }

.hero-status.open  .status-text { color: #25D366; }
.hero-status.closed .status-text { color: #e74c3c; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ================= HERO SOCIAL PROOF ================= */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

.proof-divider {
    opacity: 0.4;
}

/* ================= SPECIALTIES ================= */
.specialties-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.specialty-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid #2a2a2a;
    transition: transform 0.35s, box-shadow 0.35s;
    cursor: default;
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--gold);
}

.specialty-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0,0,0,0.8);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--gold);
    z-index: 2;
    backdrop-filter: blur(6px);
}

.specialty-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.specialty-card:hover img {
    transform: scale(1.06);
}

.specialty-info {
    padding: 20px;
}

.specialty-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.specialty-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.specialty-price {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
}

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

/* ================= TESTIMONIALS MEJORADOS ================= */
.testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.author-name {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

.author-source {
    font-size: 11px;
    color: #555;
    border: 1px solid #333;
    padding: 2px 8px;
    border-radius: 10px;
}

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

/* ================= CONTACT STATUS ================= */
.contact-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
}

.contact-status .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #aaa;
    flex-shrink: 0;
}

.contact-status.open .status-dot  { background: #25D366; animation: pulse 2s infinite; }
.contact-status.closed .status-dot { background: #e74c3c; }
.contact-status.open  .status-text { color: #25D366; }
.contact-status.closed .status-text { color: #e74c3c; }

/* ================= WHATSAPP TOOLTIP ================= */
.whatsapp {
    position: right;
    overflow: visible;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
}

.whatsapp.show-tooltip .whatsapp-tooltip {
    opacity: 1;
}

@media (max-width: 768px) {
    .whatsapp-icon { font-size: 22px; }
}



/* ================= LIGHTBOX ================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 22px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

.gallery-img {
    cursor: pointer;
}

/* ================= EVENTOS SECTION ================= */
.eventos-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.eventos-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eventos-text .hero-eyebrow {
    margin-bottom: 12px;
}

.eventos-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 16px;
}

.eventos-text p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.eventos-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eventos-lista li {
    font-size: 14px;
    color: var(--text-muted);
    padding-left: 4px;
}

.eventos-img {
    position: relative;
}

.eventos-img img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    height: 380px;
    display: block;
}

.eventos-badge {
    position: absolute;
    bottom: -16px;
    left: 20px;
    background: var(--gold);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 6px 24px rgba(197,157,95,0.35);
}

.eventos-badge strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .eventos-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .eventos-img img { height: 260px; }
}

/* ================= SHARE BUTTON ================= */
.copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.share-btn {
    background: transparent;
    border: 1px solid #333;
    color: #666;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ================= COUNTER ANIMATION ================= */
.proof-item[data-count] {
    transition: none;
}
