/*
    Archivo principal de estilos para mariachiamoreslots.com
    Tema: Colores de España, diseño moderno, adaptativo y accesible
*/
:root {
    --rojo-espana: #c60b1e;
    --amarillo-espana: #ffc400;
    --gris-oscuro: #222;
    --blanco: #fff;
    --sombra: 0 4px 16px rgba(0,0,0,0.08);
    --fuente-principal: 'Montserrat', Arial, sans-serif;
    --fuente-decorativa: 'Flamenco', cursive;
}
body {
    font-family: var(--fuente-principal);
    background: linear-gradient(135deg, #fffbe6 0%, #ffc400 100%) fixed, url('img/bg-demo.webp') center center/cover no-repeat fixed;
    color: var(--gris-oscuro);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    line-height: 1.6;
    font-size: 18px;
    text-align: center; 
    /* Фоновое изображение с испанским мотивом, полупрозрачное */
}
li {
    list-style: none;
}
.header {
    background: var(--rojo-espana);
    color: var(--blanco);
    box-shadow: var(--sombra);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo img {
    height: 48px;
    width: auto;
    border-radius: 12px;
    box-shadow: var(--sombra);
}
.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav a {
    color: var(--blanco);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}
.nav a:hover {
    color: var(--amarillo-espana);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger span {
    width: 28px;
    height: 4px;
    background: var(--amarillo-espana);
    border-radius: 2px;
    transition: all 0.3s;
}
.hero {
    background: linear-gradient(135deg, var(--rojo-espana) 60%, var(--amarillo-espana) 100%);
    color: var(--blanco);
    text-align: center;
    padding: 4rem 1rem 3rem 1rem;
    box-shadow: var(--sombra);
}
.hero h1 {
    font-family: var(--fuente-decorativa);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero .btn-jugar {
    background: var(--amarillo-espana);
    color: var(--rojo-espana);
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 32px;
    padding: 1rem 2.5rem;
    margin-top: 1.5rem;
    box-shadow: var(--sombra);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.hero .btn-jugar:hover {
    background: var(--rojo-espana);
    color: var(--amarillo-espana);
    transform: scale(1.05);
}
.hero-lista li{
    color: #000;
}
.sobre-juego, .caracteristicas, .galeria, .faq, .advertencia {
 
    margin: 2.5rem auto;
    padding: 1.5rem;
    background: var(--blanco);
    border-radius: 18px;
    box-shadow: var(--sombra);
}
.sobre-juego h2, .caracteristicas h2, .galeria h2, .faq h2, .advertencia h2 {
    color: var(--rojo-espana);
    font-family: var(--fuente-decorativa);
    margin-bottom: 1rem;
}
.caracteristicas-lista {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}
.caracteristicas-lista li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}
.caracteristicas-lista img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: var(--sombra);
}
.galeria-imagenes {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.galeria-imagenes img {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--sombra);
    transition: transform 0.2s;
}
.galeria-imagenes img:hover {
    transform: scale(1.04) rotate(-2deg);
}
.faq-acordeon {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    border-radius: 10px;
    box-shadow: var(--sombra);
    background: #f9f9f9;
    overflow: hidden;
}
.faq-pregunta {
    width: 100%;
    background: var(--amarillo-espana);
    color: var(--rojo-espana);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    padding: 1rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}
.faq-pregunta:hover {
    background: var(--rojo-espana);
    color: var(--amarillo-espana);
}
.faq-respuesta {
    max-height: 0;
    overflow: hidden;
    background: #fffbe6;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
    padding: 0 1rem;
}
.faq-item.activo .faq-respuesta {
    max-height: 200px;
    padding: 1rem;
}
/* Удалены стили .contacto, формы и .checkbox как неиспользуемые */
.advertencia ul {
    list-style: disc inside;
    margin: 1rem 0 1rem 1.5rem;
    color: var(--rojo-espana);
}
.logos-ayuda {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}
.logos-ayuda img {
    height: 40px;
    width: auto;
    filter: grayscale(0.2);
    opacity: 0.9;
    transition: filter 0.2s, opacity 0.2s;
}
.logos-ayuda img:hover {
    filter: grayscale(0);
    opacity: 1;
}
.footer {
    background: var(--gris-oscuro);
    color: var(--blanco);
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    border-radius: 18px 18px 0 0;
    margin-top: 2rem;
}
.footer-links a {
    color: var(--amarillo-espana);
    margin: 0 0.5rem;
    text-decoration: underline;
    font-size: 1rem;
}
.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}
.footer-social img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: var(--sombra);
    background: var(--blanco);
    padding: 4px;
    transition: transform 0.2s;
}
.footer-social img:hover {
    transform: scale(1.1) rotate(-5deg);
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: var(--amarillo-espana);
    color: var(--rojo-espana);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    box-shadow: var(--sombra);
    z-index: 2000;
    font-size: 1rem;
    transition: transform 0.3s;
}
.cookie-banner[hidden] {
    display: none;
}
.cookie-banner button {
    background: var(--rojo-espana);
    color: var(--blanco);
    border: none;
    border-radius: 18px;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: background 0.2s, color 0.2s;
}
.cookie-banner button:hover {
    background: var(--gris-oscuro);
    color: var(--amarillo-espana);
}
/* =============================
   Estilos espectaculares para el header
   ============================= */
.header-espectacular {
    background: linear-gradient(90deg, var(--rojo-espana) 70%, var(--amarillo-espana) 100%);
    box-shadow: 0 6px 24px rgba(198,11,30,0.10);
    border-bottom: 4px solid var(--amarillo-espana);
    padding: 0;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.10);
    padding: 0.3rem 2rem;
    font-size: 1rem;
    font-family: var(--fuente-principal);
    color: var(--blanco);
    letter-spacing: 0.5px;
}
.header-contacto span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
}
.icono-flamenco {
    vertical-align: middle;
    margin-right: 0.3rem;
    animation: flamenco-ole 2s infinite alternate;
}
@keyframes flamenco-ole {
    0% { transform: scale(1) rotate(-5deg); }
    100% { transform: scale(1.15) rotate(5deg); }
}
.header-social a {
    margin-left: 0.7rem;
    display: inline-block;
    transition: transform 0.2s;
}
.header-social a:hover img {
    transform: scale(1.15) rotate(-7deg);
    filter: drop-shadow(0 2px 8px #ffc40088);
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0.7rem 2rem 0.7rem 2rem;
    gap: 1.5rem;
}
.ornamento {
    display: flex;
    align-items: center;
    opacity: 0.95;
    animation: ornamento-bounce 2.5s infinite alternate;
}
.ornamento-izq {
    margin-right: 1.2rem;
    animation-delay: 0.2s;
}
.ornamento-der {
    margin-left: 1.2rem;
    animation-delay: 0.7s;
}
@keyframes ornamento-bounce {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-7px) scale(1.08); }
}
.logo-decorado {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    background: rgba(255,255,255,0.10);
    padding: 0.3rem 1.2rem 0.3rem 0.7rem;
    border-radius: 18px;
    box-shadow: 0 2px 12px #c60b1e22;
    transition: box-shadow 0.2s, background 0.2s;
}
.logo-decorado:hover {
    background: var(--amarillo-espana);
    box-shadow: 0 4px 24px #ffc40055;
}
.logo-decorado img {
    height: 54px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 2px 8px #ffc40044;
    background: var(--blanco);
}
.logo-texto {
    font-family: var(--fuente-decorativa);
    font-size: 1.7rem;
    color: var(--blanco);
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #c60b1e55;
}
.logo-span {
    color: var(--amarillo-espana);
    font-weight: 700;
    text-shadow: 0 2px 8px #ffc40099;
}
.nav-espectacular ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-espectacular a {
    color: var(--blanco);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.1rem;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    position: relative;
    z-index: 1;
}
.nav-espectacular a:hover, .nav-espectacular a:focus {
    background: var(--amarillo-espana);
    color: var(--rojo-espana);
    box-shadow: 0 2px 12px #ffc40055;
}
.btn-jugar-header {
    background: linear-gradient(90deg, var(--amarillo-espana) 60%, #fffbe6 100%);
    color: var(--rojo-espana);
    font-family: var(--fuente-decorativa);
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 24px;
    padding: 0.7rem 2.2rem;
    margin-left: 1.5rem;
    box-shadow: 0 2px 12px #ffc40055;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-shadow: 0 2px 8px #fffbe6cc;
    text-decoration: none;
    display: inline-block;
    animation: btn-jugar-pulse 2.2s infinite alternate;
}
@keyframes btn-jugar-pulse {
    0% { transform: scale(1); box-shadow: 0 2px 12px #ffc40055; }
    100% { transform: scale(1.07); box-shadow: 0 4px 24px #ffc40099; }
}
.btn-jugar-header:hover {
    background: var(--rojo-espana);
    color: var(--amarillo-espana);
    transform: scale(1.08) rotate(-2deg);
}
/* Адаптивность для header */
@media (max-width: 1100px) {
    .header-main {
        flex-wrap: wrap;
        gap: 0.7rem;
        padding: 0.7rem 1rem;
    }
    .header-top {
        padding: 0.3rem 1rem;
    }
}
@media (max-width: 900px) {
    .header-main {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }
    .ornamento-izq, .ornamento-der {
        display: none;
    }
    .btn-jugar-header {
        margin-left: 0;
        margin-top: 0.7rem;
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 700px) {
    .header-top {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.95rem;
    }
    .header-main {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.7rem 0.5rem;
    }
    .logo-decorado img {
        height: 40px;
    }
    .logo-texto {
        font-size: 1.1rem;
    }
    .btn-jugar-header {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}
@media (max-width: 900px) {
    .caracteristicas-lista, .galeria-imagenes {
        flex-direction: column;
        align-items: center;
    }
    .footer {
        font-size: 0.95rem;
    }
}
@media (max-width: 700px) {
    .nav ul {
        display: none;
        flex-direction: column;
        background: var(--rojo-espana);
        position: absolute;
        top: 60px;
        right: 0;
        width: 220px;
        box-shadow: var(--sombra);
        border-radius: 0 0 18px 18px;
        z-index: 1001;
    }
    .nav ul.activo {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .logo-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 1rem;
    }
    .header {
        padding: 0;
    }
}
@media (max-width: 500px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    .galeria-imagenes img {
        width: 100%;
        height: 100px;
    }
    .footer {
        font-size: 0.85rem;
    }
} 
/* =============================
   Estilos espectaculares para las secciones principales
   ============================= */
.hero-espectacular {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #ffc400 0%, #fffbe6 100%);
    box-shadow: 0 8px 32px #c60b1e22;
    border-bottom: 4px solid #c60b1e;
    z-index: 1;
}
.hero-bg-ornamento {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    opacity: 0.18;
    pointer-events: none;
    animation: hero-abanico-move 6s infinite alternate ease-in-out;
}
@keyframes hero-abanico-move {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(12px) scale(1.05); }
}
.hero-bg-flor {
    position: absolute;
    right: 2vw;
    bottom: 1vw;
    z-index: 0;
    opacity: 0.22;
    pointer-events: none;
    animation: hero-flor-gira 8s infinite alternate linear;
}
@keyframes hero-flor-gira {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(18deg) scale(1.08); }
}
.hero-espectacular h1 {
    position: relative;
    z-index: 1;
    font-size: 2.7rem;
    color: var(--rojo-espana);
    text-shadow: 0 2px 12px #ffc40088;
    margin-bottom: 1.2rem;
    font-family: var(--fuente-decorativa);
}
.hero-espectacular p {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    color: var(--gris-oscuro);
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px #fffbe6cc;
}
.hero-espectacular .btn-jugar {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    background: linear-gradient(90deg, var(--rojo-espana) 60%, var(--amarillo-espana) 100%);
    color: var(--blanco);
    border-radius: 32px;
    padding: 1rem 2.7rem;
    font-family: var(--fuente-decorativa);
    font-weight: 700;
    box-shadow: 0 2px 16px #c60b1e33;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    margin-bottom: 1.5rem;
    animation: btn-jugar-pulse 2.2s infinite alternate;
}
.hero-espectacular .btn-jugar:hover {
    background: var(--amarillo-espana);
    color: var(--rojo-espana);
    transform: scale(1.08) rotate(-2deg);
}
.sobre-juego-espectacular {
    position: relative;
    background: linear-gradient(90deg, #fffbe6 60%, #ffc400 100%);
    box-shadow: 0 4px 18px #ffc40033;
    margin-top: 2.5rem;
    overflow: hidden;
}
.sobre-juego-ornamento {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    opacity: 0.18;
    z-index: 0;
    animation: sobre-guitarra-move 7s infinite alternate;
}
@keyframes sobre-guitarra-move {
    0% { transform: rotate(-8deg) scale(1); }
    100% { transform: rotate(8deg) scale(1.08); }
}
.sobre-juego-flamenco {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    opacity: 0.18;
    z-index: 0;
    animation: sobre-flamenco-move 8s infinite alternate;
}
@keyframes sobre-flamenco-move {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.12) rotate(12deg); }
}
.sobre-juego-espectacular h2 {
    position: relative;
    z-index: 1;
    color: var(--rojo-espana);
    font-family: var(--fuente-decorativa);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.sobre-juego-espectacular p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    color: var(--gris-oscuro);
    margin-bottom: 0.5rem;
}
.caracteristicas-espectacular {
    background: linear-gradient(90deg, #ffc400 60%, #fffbe6 100%);
    box-shadow: 0 4px 18px #ffc40033;
    margin-top: 2.5rem;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.caracteristicas-espectacular h2 {
    color: var(--rojo-espana);
    font-family: var(--fuente-decorativa);
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.caracteristicas-lista {
    gap: 2.5rem;
}
.caracteristica-icono {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    animation: caracteristica-bounce 3s infinite alternate;
}
@keyframes caracteristica-bounce {
    0% { transform: scale(1) rotate(-5deg); }
    100% { transform: scale(1.12) rotate(5deg); }
}
.galeria-espectacular {
    background: linear-gradient(90deg, #fffbe6 60%, #ffc400 100%);
    box-shadow: 0 4px 18px #ffc40033;
    margin-top: 2.5rem;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.galeria-ornamento {
    position: absolute;
    left: 2rem;
    top: 1rem;
    opacity: 0.18;
    z-index: 0;
    animation: galeria-confeti-move 6s infinite alternate;
}
@keyframes galeria-confeti-move {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.08) translateY(8px); }
}
.galeria-espectacular h2 {
    color: var(--rojo-espana);
    font-family: var(--fuente-decorativa);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}
.galeria-imagenes {
    position: relative;
    z-index: 1;
}
.faq-espectacular {
    background: linear-gradient(90deg, #ffc400 60%, #fffbe6 100%);
    box-shadow: 0 4px 18px #ffc40033;
    margin-top: 2.5rem;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.faq-ornamento {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    opacity: 0.18;
    z-index: 0;
    animation: faq-interrogacion-move 7s infinite alternate;
}
@keyframes faq-interrogacion-move {
    0% { transform: rotate(-8deg) scale(1); }
    100% { transform: rotate(8deg) scale(1.08); }
}
.faq-espectacular h2 {
    color: var(--rojo-espana);
    font-family: var(--fuente-decorativa);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}
.faq-acordeon {
    position: relative;
    z-index: 1;
}
.advertencia-espectacular {
    background: linear-gradient(90deg, #fffbe6 60%, #ffc400 100%);
    box-shadow: 0 4px 18px #ffc40033;
    margin-top: 2.5rem;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.advertencia-ornamento {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    opacity: 0.18;
    z-index: 0;
    animation: advertencia-escudo-move 7s infinite alternate;
}
@keyframes advertencia-escudo-move {
    0% { transform: rotate(-8deg) scale(1); }
    100% { transform: rotate(8deg) scale(1.08); }
}
.advertencia-espectacular h2 {
    color: var(--rojo-espana);
    font-family: var(--fuente-decorativa);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}
.advertencia-espectacular ul, .advertencia-espectacular .logos-ayuda {
    position: relative;
    z-index: 1;
}
/* Адаптивность для секций */
@media (max-width: 900px) {
    .hero-espectacular h1 {
        font-size: 1.5rem;
    }
    .hero-bg-ornamento, .hero-bg-flor {
        display: none;
    }
    .sobre-juego-ornamento, .sobre-juego-flamenco, .galeria-ornamento, .faq-ornamento, .advertencia-ornamento {
        display: none;
    }
    .caracteristica-icono svg {
        width: 32px;
        height: 32px;
    }
} 
/* Контейнер для всех секций */
.main-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.2rem 2.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
@media (max-width: 1200px) {
    .main-container {
        max-width: 98vw;
        padding: 1.5rem 0.5rem;
    }
}
@media (max-width: 700px) {
    .main-container {
        padding: 0.5rem 0.2rem;
        gap: 1.2rem;
    }
}
/* Убираю лишние паддинги у секций, чтобы не было двойных отступов */
.hero-espectacular,
.sobre-juego-espectacular,
.caracteristicas-espectacular,
.galeria-espectacular,
.faq-espectacular,
.advertencia-espectacular,
.historia-espectacular,
.fiesta-espectacular {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
} 
/* Броское предупреждение в hero */
.hero-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #ffc400 80%, #c60b1e 100%);
    color: var(--rojo-espana);
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 18px;
    box-shadow: 0 2px 16px #c60b1e33;
    padding: 1rem 1.5rem;
    margin: 1.2rem auto 1.2rem auto;
    max-width: 700px;
    gap: 1rem;
    text-align: center;
    letter-spacing: 0.5px;
    border: 2px solid var(--rojo-espana);
}
.hero-warning-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}
.hero-warning-text {
    color: var(--rojo-espana);
    font-weight: 900;
    text-shadow: 0 2px 8px #fffbe6cc;
}
@media (max-width: 700px) {
    .hero-warning {
        font-size: 0.98rem;
        padding: 0.7rem 0.5rem;
        max-width: 98vw;
    }
    .hero-warning-icon {
        font-size: 1.3rem;
    }
} 
/* Pop-up 18+ */
.popup18-overlay {
    position: fixed;
    inset: 0;
    background: rgba(34, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}
.popup18-content {
    background: #ffc400;
    color: var(--rojo-espana);
    border-radius: 22px;
    box-shadow: 0 8px 32px #c60b1e55;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    max-width: 370px;
    width: 95vw;
    text-align: center;
    font-family: var(--fuente-principal);
    position: relative;
    border: 3px solid var(--rojo-espana);
}
.popup18-content h2 {
    font-size: 2rem;
    font-family: var(--fuente-decorativa);
    margin-bottom: 1rem;
    color: var(--rojo-espana);
}
.popup18-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--gris-oscuro);
}
.popup18-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}
.popup18-checkbox {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: var(--rojo-espana);
    font-weight: 600;
}
.popup18-checkbox input[type="checkbox"] {
    accent-color: var(--amarillo-espana);
    width: 1.2rem;
    height: 1.2rem;
}
.popup18-btn-aceptar {
    background: var(--rojo-espana);
    color: var(--amarillo-espana);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 18px;
    padding: 0.7rem 2.2rem;
    cursor: pointer;
    box-shadow: 0 2px 12px #c60b1e33;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.popup18-btn-aceptar:hover {
    background: var(--amarillo-espana);
    color: var(--rojo-espana);
    transform: scale(1.05);
}
/* Banner cookies */
.cookieBanner-overlay {
    position: fixed;
    left: 50%;
    bottom: 2.5rem;
    transform: translateX(-50%);
    background: #c60b1e;
    background: linear-gradient(90deg, #c60b1e 80%, #ffc400 100%);
    color: var(--blanco);
    border-radius: 18px;
    box-shadow: 0 4px 24px #c60b1e55;
    padding: 1.2rem 2rem;
    z-index: 4000;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 320px;
    max-width: 98vw;
}
.cookieBanner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.cookieBanner-text {
    font-size: 1rem;
    color: var(--blanco);
    margin-bottom: 0.5rem;
}
.cookieBanner-link {
    color: var(--amarillo-espana);
    text-decoration: underline;
    font-weight: 700;
}
.cookieBanner-btns {
    display: flex;
    gap: 1rem;
}
.cookieBanner-btn-aceptar {
    background: var(--amarillo-espana);
    color: var(--rojo-espana);
    font-weight: 700;
    border: none;
    border-radius: 14px;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cookieBanner-btn-aceptar:hover {
    background: var(--rojo-espana);
    color: var(--amarillo-espana);
    transform: scale(1.05);
}
.cookieBanner-btn-rechazar {
    background: #fffbe6;
    color: var(--rojo-espana);
    font-weight: 700;
    border: none;
    border-radius: 14px;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cookieBanner-btn-rechazar:hover {
    background: var(--rojo-espana);
    color: var(--amarillo-espana);
    transform: scale(1.05);
}
@media (max-width: 700px) {
    .popup18-content {
        padding: 1.2rem 0.5rem;
        font-size: 0.98rem;
    }
    .cookieBanner-overlay {
        padding: 0.7rem 0.5rem;
        min-width: 90vw;
        max-width: 99vw;
    }
    .cookieBanner-content {
        gap: 0.5rem;
    }
    .cookieBanner-btns {
        gap: 0.5rem;
    }
} 