/* --- CONFIGURACIÓN BASE --- */
:root {
    --bg-body: #050505;
    --bg-card: #121212;
    --gold: #d4af37;
    --gold-dim: #8a7020;
    --red: #c92a2a;
    --text-main: #f2f2f2;
    --text-dim: #888;
    --font-title: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --fab-size: 60px;

    /* Variables de Z-Index */
    --z-fab: 1000;
    --z-fab-hover: 1001;
    --z-modal: 9999;
}

/* --- ACCESIBILIDAD KEYBOARD (FOCUS) --- */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    padding-bottom: 0;
    overflow-x: hidden;
}

/* Bloqueo de scroll cuando el modal está abierto */
body.modal-open {
    overflow: hidden;
}

/* --- HERO SLIDER (ESTILO ATMÓSFERA) --- */
.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Encabezado estándar para subpáginas (Carta, Reservas) */
header:not(.hero-slider) {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), var(--bg-body));
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: auto;
    /* Evita heredar 100vh */
}

header:not(.hero-slider) h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-align: center;
    pointer-events: none;
    /* Dejar pasar clics a los botones internos si es necesario, o controlar manualmente */
}

.hero-content * {
    pointer-events: auto;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 10px;
}

.hero-content .subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    margin-bottom: 30px;
}

/* --- BOTONES HERO --- */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.hero-btn {
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 15px 35px;
    border-radius: 40px;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* --- PAGINACIÓN CUSTOM --- */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    height: 15px !important;
}

/* REESCRITURA DE H1 PARA HERO SLIDER */
.hero-slider h1 {
    font-family: var(--font-title);
    color: var(--gold);
    letter-spacing: 4px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}



.subtitle {
    font-size: 0.8rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 5px;
}

/* --- NAVEGACIÓN PC --- */
.nav-desktop {
    display: none;
    background: #0f0f0f;
    border-bottom: 1px solid #222;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-desktop-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-desk-btn {
    background: none;
    border: 1px solid #333;
    color: #888;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.nav-desk-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* --- CONTENEDOR PRINCIPAL --- */
main {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 15px;
    min-height: 60vh;
}

.menu-section {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-section.active {
    display: block;
    opacity: 1;
}

.category-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin: 30px 0 15px 0;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
}

.section-header {
    grid-column: 1 / -1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    color: var(--text-main);
}

.line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-icon {
    font-size: 1.5rem;
}

/* --- TARJETAS (CARDS) --- */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    height: 125px;
    cursor: pointer;
    /* Indica que es clicable */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s, border-color 0.2s;
}

.card:active {
    transform: scale(0.98);
}

.card:hover {
    border-color: var(--gold-dim);
}

.card-img {
    width: 120px;
    height: 100%;
    object-fit: cover;
}

.card-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.card-title {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    line-height: 1.1;
}

.card-price {
    font-weight: 800;
    color: var(--gold);
    font-size: 1.1rem;
    margin-left: 8px;
    font-family: var(--font-title);
}

.card-desc {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- FAB MENU (MOBILE) --- */
.fab-overlay {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: var(--z-fab);
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 15px;
}

.fab-main {
    width: var(--fab-size);
    height: var(--fab-size);
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease;
    position: relative;
    z-index: var(--z-fab-hover);
}

.fab-main i {
    font-size: 1.8rem;
    color: #000;
    transition: transform 0.3s ease;
}

.fab-container.open .fab-main {
    transform: scale(1.1);
    background: #fff;
}

.fab-container.open .fab-main i {
    transform: rotate(45deg);
}

.fab-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fab-label {
    background: rgba(20, 20, 20, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-right: 2px solid var(--gold);
}

.fab-btn-mini {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.btn-autor {
    background: linear-gradient(135deg, #222, #444);
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-clasicos {
    background: #e63946;
}

.btn-piqueos {
    background: #fca311;
    color: #000;
}

.btn-cervezas {
    background: #4cc9f0;
    color: #000;
}

/* FAB Botones Nuevos */
.btn-origen {
    background: linear-gradient(135deg, #222, #444);
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-pop {
    background: var(--red);
    color: #fff;
}

.btn-terraza {
    background: #fca311;
    color: #000;
}

.btn-cocina {
    background: #4cc9f0;
    color: #000;
}

.fab-container.open .fab-list {
    pointer-events: auto;
}

.fab-container.open .fab-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.fab-container.open~.backdrop {
    opacity: 1;
    pointer-events: auto;
}

/* --- POPUP MODAL (ESTILOS NUEVOS) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: var(--z-modal);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #181818;
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    border: 1px solid #333;
    overflow: hidden;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.modal-info {
    padding: 25px;
}

.modal-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.modal-header-row h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--gold);
}

.modal-header-row span {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.modal-subtitle {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
    font-style: italic;
}

.modal-divider {
    width: 100%;
    height: 1px;
    background: #333;
    margin: 15px 0;
}

.modal-label {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.modal-text {
    color: #ddd;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- RESPONSIVE PC --- */
@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-desktop {
        display: block;
    }

    .fab-overlay {
        display: none;
    }

    header {
        height: 40vh;
    }

    h1 {
        font-size: 3.5rem;
    }

    .modal-img {
        height: 300px;
    }

    .card {
        height: 140px;
    }

    .card-img {
        width: 140px;
    }
}





/* --- FOOTER ELEGANTE --- */
.footer {
    background-color: #080808;
    /* Un tono apenas más claro que el fondo para diferenciar */
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    /* Línea dorada sutil */
    padding: 40px 20px 20px;
    margin-top: 40px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 0;
    /* Espacio extra en móvil para que el FAB no tape nada */
}

/* Marca */
.footer-brand h2 {
    font-family: var(--font-title);
    color: var(--gold);
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Información */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.info-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Redes Sociales */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    background: rgba(212, 175, 55, 0.1);
}

/* Copyright */
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
    padding-top: 20px;
}

.footer-copyright p {
    color: #444;
    font-size: 0.75rem;
}

/* --- AJUSTE PC (Desktop) --- */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding-bottom: 20px;
        /* En PC no necesitamos tanto espacio abajo */
    }

    .footer-brand {
        text-align: left;
    }

    .footer-info {
        align-items: flex-start;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 30px;
    }
}







/* --- ESTILOS DE LA PÁGINA DE RESERVAS --- */

.reservation-section {
    padding: 60px 20px;
    background-color: var(--bg-body);
    min-height: 60vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

/* Formulario Grid Layout */
.booking-form {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: opacity 0.5s ease;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Dos columnas */
    gap: 25px;
    margin-bottom: 30px;
}

.full-width {
    grid-column: 1 / -1;
    /* Ocupa todo el ancho */
}

/* Estilos de Inputs */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 4px;
    padding: 15px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

/* --- ESTILOS ADICIONALES PARA RESERVAS SEGMENTADAS --- */
.section-label {
    display: block;
    font-family: var(--font-title);
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.hidden-section {
    display: none;
}

.dynamic-section {
    border-left: 3px solid var(--gold);
    animation: fadeInSlide 0.4s ease-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Input Focus Effects */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* Custom Select Dropdown Arrow */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    /* Elimina flecha por defecto */
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    pointer-events: none;
}

/* Calendario en Dark Mode (Soporte navegador) */
::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

/* Botón de Enviar */
.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: var(--gold);
    color: #000;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* --- TARJETA DE ÉXITO (SUCCESS STATE) --- */
.success-card {
    background-color: var(--bg-card);
    padding: 60px 40px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--gold);
    animation: fadeInUp 0.6s ease forwards;
}

.success-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.success-card h2 {
    font-family: var(--font-title);
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 2rem;
}

.success-card p {
    color: var(--text-dim);
    margin-bottom: 10px;
}

.success-card .detail-text {
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.hidden {
    display: none;
}

/* --- ANIMACIONES --- */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE: En móviles, una sola columna */
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 25px;
    }
}

/* --- BOTONES DE FIDELIZACIÓN --- */
.promo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
    padding: 18px;
    border-radius: 12px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-free-drink {
    background-color: var(--red);
    color: #fff;
    animation: pulse-red 2s infinite;
}

.btn-welcome-drink {
    background: linear-gradient(135deg, var(--gold), #8a7020);
    color: #000;
    margin-bottom: 40px;
}

.promo-btn:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 42, 42, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(201, 42, 42, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 42, 42, 0);
    }
}

/* --- ESTILOS DE FORMULARIO EN MODAL --- */
.poll-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

.poll-question {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.poll-question p {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
    text-align: left;
}

.options-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    text-align: left;
}

.option-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.option-item input[type="radio"] {
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
}

.option-item span {
    font-size: 0.9rem;
    color: #ccc;
}

.poll-input-group {
    display: grid;
    gap: 10px;
}

.poll-input-group label {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    text-align: left;
}

.poll-input-group input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    padding: 12px;
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-body);
}

.submit-poll-btn {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    font-family: var(--font-title);
    margin-top: 10px;
    width: 100%;
}

/* --- PANTALLA FINAL --- */
.success-screen {
    text-align: center;
    padding: 20px 0;
}

.success-screen h2 {
    color: var(--gold);
    font-family: var(--font-title);
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-screen .prize-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px dashed var(--gold);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.success-screen .prize-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.success-screen p {
    color: #aaa;
    line-height: 1.6;
}

/* Personalización del scroll para el form */
.poll-form::-webkit-scrollbar {
    width: 6px;
}

.poll-form::-webkit-scrollbar-track {
    background: #050505;
}

.poll-form::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .promo-btn {
        max-width: 500px;
    }
}