/* ========== IMPORTAR FUENTE ROSHMARY ========== */
@font-face {
    font-family: 'Roshmary';
    src: url('Roshmary.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roshmary';
    src: url('Roshmary.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ========== RESET Y ESTILOS GLOBALES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
    background-color: #faf6ed;
    color: #2c2b28;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* SOLO TÍTULOS USAN ROSHMARY */
h1, h2, h3, h4, .logo, .hero-title, .section-title, .festival-title, .mapas-title, .terminos-title, .privacidad-title, .reserva-title, .sobre-title, .reclamaciones-title {
    font-family: 'Roshmary', 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===== MENÚ FLOTANTE REDONDEADO CON DEGRADADO ===== */
.navbar-flotante {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 1200px;
    max-width: 90vw;
    background: linear-gradient(135deg, #CB060F, #710B07);
    backdrop-filter: blur(0px);
    border-radius: 150px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 3px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border: 0px solid rgba(255, 215, 120, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1.5rem 0.6rem 1.2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo-img {
    display: flex;
    align-items: center;
}

.logo-img a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img img {
    height: 80px;
    width: auto;
    max-height: 80px;
    padding-left: 20px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo-img img:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links li a {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    text-align: center;
}

.nav-links li:not(.btn-wsp):not(.btn-reserva-flotante) a {
    color: #ffffff;
    background: transparent;
}

.nav-links li:not(.btn-wsp):not(.btn-reserva-flotante) a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #D6B46A;
}

.btn-wsp a {
    background: #25D366;
    color: white !important;
}

.btn-wsp a:hover {
    background: #20b859;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
}

.btn-reserva-flotante a {
    background: #D6B46A !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

.btn-reserva-flotante a:hover {
    background: #bb9749 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    color: #ffffff !important;
}

.wsp-icon {
    font-size: 1.1rem;
    font-weight: normal;
}

.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    border: 0px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    padding: 10px 18px;
    z-index: 1002;
    transition: all 0.1s ease;
    backdrop-filter: blur(1px);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #ffffff;
    margin: 6px 0;
    transition: 0.1s ease;
    border-radius: 0px;
}

.menu-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(145deg, #CB060F, #710B07);
    z-index: 1299;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    visibility: hidden;
    opacity: 0;
}

.menu-fullscreen.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.close-menu span {
    position: relative;
    width: 24px;
    height: 2px;
    background: #ffffff;
    display: block;
}

.close-menu span:first-child {
    transform: rotate(45deg);
}

.close-menu span:last-child {
    transform: rotate(-45deg);
    position: absolute;
}

.menu-fullscreen .fullscreen-nav {
    text-align: center;
    padding: 2rem;
}

.menu-fullscreen .fullscreen-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-fullscreen .fullscreen-nav li {
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.menu-fullscreen.active .fullscreen-nav li {
    opacity: 1;
    transform: translateY(0);
}

.menu-fullscreen.active .fullscreen-nav li:nth-child(1) { transition-delay: 0.1s; }
.menu-fullscreen.active .fullscreen-nav li:nth-child(2) { transition-delay: 0.2s; }
.menu-fullscreen.active .fullscreen-nav li:nth-child(3) { transition-delay: 0.3s; }
.menu-fullscreen.active .fullscreen-nav li:nth-child(4) { transition-delay: 0.4s; }

.menu-fullscreen .fullscreen-nav a {
    font-family: 'Roshmary', 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    min-width: 280px;
    padding: 0.8rem 1.5rem;
    text-align: center;
}

.menu-fullscreen .fullscreen-nav a:hover {
    color: #D6B46A;
    letter-spacing: 6px;
}

.menu-fullscreen .fullscreen-nav .btn-wsp-full a {
    background: #25D366;
    border-radius: 50px;
    font-size: 1.3rem;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
    color: white !important;
}

.menu-fullscreen .fullscreen-nav .btn-wsp-full a:hover {
    background: #20b859;
    letter-spacing: 2px;
    color: white !important;
}

.menu-fullscreen .fullscreen-nav .btn-reserva-full a {
    background: #D6B46A;
    border-radius: 50px;
    font-size: 1.3rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1e1e1e !important;
}

.menu-fullscreen .fullscreen-nav .btn-reserva-full a:hover {
    background: #c9a341;
    letter-spacing: 2px;
    color: #1e1e1e !important;
}

@media (max-width: 1200px) {
    .navbar-flotante {
        top: 16px;
        width: 95%;
        min-width: unset;
        border-radius: 60px;
        left: 50%;
        transform: translateX(-50%);
    }
    .nav-container {
        padding: 0.6rem 1.2rem;
    }
    .logo-img img {
        height: 50px;
        padding-left: 0;
    }
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .menu-fullscreen .fullscreen-nav a {
        font-size: 1.5rem;
        min-width: 240px;
        padding: 0.6rem 1rem;
    }
    .menu-fullscreen .fullscreen-nav .btn-wsp-full a,
    .menu-fullscreen .fullscreen-nav .btn-reserva-full a {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    .close-menu {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .menu-fullscreen .fullscreen-nav a {
        font-size: 1.3rem;
        min-width: 200px;
        padding: 0.5rem 0.8rem;
    }
    .menu-fullscreen .fullscreen-nav .btn-wsp-full a,
    .menu-fullscreen .fullscreen-nav .btn-reserva-full a {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
}

.navbar-flotante.scrolled {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Hero Section */
.hero-mirador {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)), url('/img/hero.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    padding: 2rem;
    position: relative;
    top: 0;
    left: 0;
}

#inicio {
    scroll-margin-top: 100px;
}

.hero-content {
    max-width: 1000px;
    padding: 2rem;
    animation: fadeUp 1.2s ease-out;
}

.hero-title {
    font-size: 5rem;
    color: #ffffff;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 4px;
    font-weight: 700;
    font-family: 'Roshmary', 'Cormorant Garamond', serif;
}

.hero-sub {
    font-size: 1.5rem;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    margin: 1rem 0 2rem;
    letter-spacing: 2px;
}

.gold-line {
    width: 100px;
    height: 3px;
    background: #D6B46A;
    margin: 1rem auto;
}

.btn-cta {
    display: inline-block;
    background: transparent;
    border: 2px solid #D6B46A;
    color: #ffffff;
    padding: 1rem 2.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 2px;
    margin-top: 1rem;
    font-family: 'Arial', sans-serif;
}

.btn-cta:hover {
    background: #D6B46A;
    color: #1c1c1c;
    border-color: #D6B46A;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-sub {
        font-size: 1.1rem;
    }
}

/* Logo PNG - Reemplazo del H1 */
.hero-logo {
    max-width: 85%;
    width: auto;
    height: auto;
    max-height: 280px;
    /* Ajusta según el tamaño de tu PNG */
    margin-bottom: 1rem;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.02);
}

/* Media query para móviles */
@media (max-width: 700px) {
    .hero-logo {
        max-width: 90%;
        max-height: 120px;
    }
}

/* sección mirador vista */
.section-mirror {
    padding: 3rem 2rem;
    background: #fffaf2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: #2c2b28;
    margin-bottom: 1rem;
    font-family: 'Roshmary', 'Cormorant Garamond', serif;
}

.desc-lujo {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #4a4843;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    text-align: center;
    padding: 0 0 2rem 0;
    border-bottom: 3px solid #d4af37;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 40px -12px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-icon {
    font-size: 2.8rem;
    margin: 2rem 0 0.5rem 0;
}

.card h3 {
    font-size: 1.8rem;
    font-family: 'Roshmary', 'Cormorant Garamond', serif;
    margin-bottom: 0.8rem;
    color: #2c2b28;
    padding: 10px 1rem;
}

.card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #5a5853;
    padding: 0 1.5rem 1rem 1.5rem;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    .desc-lujo {
        font-size: 1rem;
        padding: 0 1rem;
    }
    .grid-cards {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .card-image {
        height: 200px;
    }
    .card h3 {
        font-size: 1.5rem;
    }
    .card p {
        font-size: 0.9rem;
    }
}

/* ===== SECCIÓN MENÚ ===== */
.menu-card {
    background: white;
    border-radius: 28px;
    padding: 2rem 1.8rem;
    width: 320px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.5);
}

.menu-icon-custom {
    width: 60px;
    height: 60px;
    margin: 0 0 1.2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef5e8;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    overflow: hidden;
}

.menu-card:hover .menu-icon-custom {
    background: #d4af37;
    transform: scale(1.05);
}

.menu-icon-custom svg {
    width: 48px;
    height: 48px;
    display: block;
}

.menu-icon {
    width: 60px;
    height: 60px;
    margin: 0 0 1.2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef5e8;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.menu-card:hover .menu-icon {
    background: #d4af37;
    transform: scale(1.05);
}

.menu-icon span {
    font-size: 2rem;
    line-height: 1;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed #e0d5c0;
    padding-bottom: 0.75rem;
}

.menu-card h3 {
    font-size: 1.4rem;
    font-family: 'Roshmary', 'Cormorant Garamond', serif;
    color: #2c2b28;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.precio {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Arial', sans-serif;
    margin: 0;
    white-space: nowrap;
}

.desc-plato {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    flex: 1;
}

.destacado {
    display: inline-block;
    background: #f0e6d2;
    color: #b48c2c;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
    text-align: center;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.menu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-menu-completo {
    display: inline-block;
    background: transparent;
    border: 2px solid #d4af37;
    color: #b48c2c;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.btn-menu-completo:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.menu-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-img img {
    transform: scale(1.05);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .menu-img {
        height: 180px;
    }
    .menu-header h3 {
        font-size: 1.1rem;
    }
    .precio {
        font-size: 1.1rem;
    }
    .menu-card {
        width: 100%;
        max-width: 360px;
        padding: 1.5rem;
    }
    .menu-card h3 {
        font-size: 1.2rem;
    }
}

/* ===== FOOTER ===== */
.footer-inca {
    background: #710B07;
    color: #ffffff;
    padding: 0;
    margin-top: 0rem;
    position: relative;
}

.footer-decoration {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-img {
    width: 100%;
    height: auto;
    min-height: 120px;
    object-fit: cover;
    background: #fffaf2;
    object-position: center center;
    display: block;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

.footer-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #D6B46A;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-tagline {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.footer-divider {
    width: 80px;
    height: 2px;
    background: #D6B46A;
    margin: 1rem auto 0;
}

.footer-mision {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1rem;
    background: rgba(214, 180, 106, 0.15);
    border-radius: 50px;
}

.footer-mision p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #D6B46A;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.footer-col h3 {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #D6B46A;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-col p {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.footer-ciudad {
    font-weight: 700;
    color: #D6B46A;
    margin-top: 0.5rem;
}

.footer-col a {
    color: #D6B46A;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
    font-family: 'Arial', sans-serif;
}

.footer-col a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links li a {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #D6B46A;
    padding-left: 5px;
}

.footer-social {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(214, 180, 106, 0.3);
    border-bottom: 1px solid rgba(214, 180, 106, 0.3);
    margin-bottom: 2rem;
}

.footer-social h3 {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #D6B46A;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icons a {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: #D6B46A;
    color: #710B07;
    transform: translateY(-3px);
}

.btn-instagram:hover {
    background: #E4405F !important;
    color: white !important;
}

.btn-whatsapp:hover {
    background: #25D366 !important;
    color: white !important;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-bottom-links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #D6B46A;
}

.footer-copyright {
    font-family: 'Arial', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.footer-web {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    color: #D6B46A;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .footer-container {
        padding: 2rem 1.5rem;
    }
    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-col h3 {
        text-align: center;
    }
    .footer-links {
        text-align: center;
    }
    .social-icons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    .social-icons a {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        width: auto;
        min-width: 200px;
    }
    .footer-bottom-links {
        gap: 1rem;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
    }
    .footer-mision p {
        font-size: 0.95rem;
    }
    .footer-img {
        min-height: 80px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 1.5rem 1rem;
    }
    .footer-img {
        min-height: 60px;
    }
    .footer-mision {
        padding: 0.8rem;
    }
    .footer-mision p {
        font-size: 0.85rem;
    }
}

/* ===== SECCIÓN TÉRMINOS Y CONDICIONES ===== */
.terminos-section {
    padding: 11rem 2rem;
    background: linear-gradient(135deg, #f9f5ee 0%, #f2ede2 100%);
    position: relative;
}

.terminos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #710B07, #D6B46A, #710B07);
}

.terminos-container {
    max-width: 1280px;
    margin: 0 auto;
}

.terminos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.terminos-title {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #710B07;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: #D6B46A;
    margin: 1rem auto;
}

.terminos-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.terminos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.terminos-col {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.terminos-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #D6B46A;
}

.terminos-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.terminos-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.terminos-card h3 {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #710B07;
    margin-bottom: 0.8rem;
}

.terminos-card p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.terminos-card p strong {
    color: #D6B46A;
    font-weight: 700;
}

.terminos-footer {
    margin-top: 3rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(113, 11, 7, 0.05);
    border-radius: 16px;
}

.terminos-footer p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #710B07;
    font-weight: 500;
}

.terminos-fecha {
    margin-top: 0.5rem;
    font-size: 0.75rem !important;
    color: #999 !important;
    font-weight: normal !important;
}

@media (max-width: 900px) {
    .terminos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .terminos-title {
        font-size: 2rem;
    }
    .terminos-section {
        padding: 8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .terminos-title {
        font-size: 1.6rem;
    }
    .terminos-card {
        padding: 1.2rem;
    }
    .terminos-card h3 {
        font-size: 1rem;
    }
    .terminos-card p {
        font-size: 0.8rem;
    }
}

/* ===== SECCIÓN AVISO DE PRIVACIDAD ===== */
.privacidad-section {
    padding: 10rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #faf7f2 100%);
    position: relative;
}

.privacidad-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #710B07, #D6B46A, #710B07);
}

.privacidad-container {
    max-width: 1280px;
    margin: 0 auto;
}

.privacidad-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacidad-title {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #710B07;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.privacidad-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.privacidad-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.8rem;
}

.privacidad-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(214, 180, 106, 0.2);
}

.privacidad-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(214, 180, 106, 0.5);
}

.privacidad-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.privacidad-card h3 {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #710B07;
    margin-bottom: 1rem;
    border-left: 3px solid #D6B46A;
    padding-left: 0.8rem;
}

.privacidad-card p {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.privacidad-card ul {
    margin: 0.5rem 0 0 1.2rem;
    padding: 0;
}

.privacidad-card li {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 0.3rem;
}

.privacidad-card strong {
    color: #D6B46A;
    font-weight: 700;
}

.privacidad-contacto {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(214, 180, 106, 0.3);
}

.privacidad-footer {
    margin-top: 3rem;
    text-align: center;
    padding: 1.8rem;
    background: rgba(113, 11, 7, 0.05);
    border-radius: 20px;
}

.privacidad-footer p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #710B07;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.privacidad-fecha {
    margin-top: 0.5rem;
    font-size: 0.75rem !important;
    color: #999 !important;
    font-weight: normal !important;
}

.privacidad-botones {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-privacidad {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    border: 2px solid #D6B46A;
    color: #710B07;
}

.btn-privacidad:hover {
    background: #D6B46A;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 850px) {
    .privacidad-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .privacidad-title {
        font-size: 2rem;
    }
    .privacidad-section {
        padding: 8rem 1.5rem;
    }
    .privacidad-card {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacidad-title {
        font-size: 1.6rem;
    }
    .privacidad-subtitle {
        font-size: 0.85rem;
    }
    .privacidad-card h3 {
        font-size: 1rem;
    }
    .privacidad-card p,
    .privacidad-card li {
        font-size: 0.75rem;
    }
    .privacidad-botones {
        flex-direction: column;
        align-items: center;
    }
    .btn-privacidad {
        width: 80%;
        text-align: center;
    }
}

/* ===== SECCIÓN RESERVA ONLINE ===== */
.reserva-section {
    padding: 10rem 2rem;
    background: linear-gradient(135deg, #f9f5ee 0%, #f2ede2 100%);
    position: relative;
}

.reserva-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #710B07, #D6B46A, #710B07);
}

.reserva-container {
    max-width: 1280px;
    margin: 0 auto;
}

.reserva-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reserva-title {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #710B07;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.reserva-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.reserva-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
}

.reserva-formulario {
    background: #ffffff;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.reserva-formulario h3 {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #710B07;
    margin-bottom: 1.5rem;
    border-left: 4px solid #D6B46A;
    padding-left: 1rem;
}

.form-reserva {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Arial', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fefefe;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D6B46A;
    box-shadow: 0 0 0 3px rgba(214, 180, 106, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.form-check input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check label {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    color: #666;
}

.form-check label a {
    color: #D6B46A;
    text-decoration: none;
}

.form-check label a:hover {
    text-decoration: underline;
}

.btn-enviar-reserva {
    background: #710B07;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.btn-enviar-reserva:hover {
    background: #D6B46A;
    color: #710B07;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(113, 11, 7, 0.3);
}

.mensaje-confirmacion {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #e8f5e9;
    border-radius: 12px;
    text-align: center;
}

.mensaje-confirmacion p {
    font-family: 'Arial', sans-serif;
    color: #2e7d32;
    font-size: 0.9rem;
}

.reserva-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.info-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(214, 180, 106, 0.2);
}

.info-card h3 {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #710B07;
    margin-bottom: 1rem;
}

.info-telefonos {
    margin: 1.5rem 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.info-icon {
    font-size: 1.4rem;
    min-width: 35px;
}

.info-item strong {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: #4a4a4a;
    display: block;
    margin-bottom: 0.2rem;
}

.info-item p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #D6B46A;
    font-weight: 600;
}

.btn-whatsapp-grande {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 1rem 0;
    letter-spacing: 1px;
}

.btn-whatsapp-grande:hover {
    background: #20b859;
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.info-nota {
    font-family: 'Arial', sans-serif;
    font-size: 0.7rem;
    color: #999;
    text-align: center;
    margin-top: 0.8rem;
}

.horarios ul {
    list-style: none;
    padding: 0;
}

.horarios li {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0e6d2;
    display: flex;
    justify-content: space-between;
}

.horarios li span {
    font-weight: 700;
    color: #710B07;
}

@media (max-width: 900px) {
    .reserva-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .reserva-title {
        font-size: 2rem;
    }
    .reserva-section {
        padding: 8rem 1.5rem;
    }
    .reserva-formulario {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .reserva-title {
        font-size: 1.6rem;
    }
    .reserva-formulario h3 {
        font-size: 1.2rem;
    }
    .info-card h3 {
        font-size: 1rem;
    }
    .btn-whatsapp-grande {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    .horarios li {
        flex-direction: column;
        gap: 0.2rem;
    }
}

/* ===== SECCIÓN SOBRE NOSOTROS ===== */
.sobre-section {
    padding: 10rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #faf7f2 100%);
    position: relative;
}

.sobre-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #710B07, #D6B46A, #710B07);
}

.sobre-container {
    max-width: 1280px;
    margin: 0 auto;
}

.sobre-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sobre-title {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #710B07;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.sobre-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.sobre-historia {
    background: #ffffff;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(214, 180, 106, 0.2);
}

.sobre-icono {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sobre-historia h3 {
    font-family: 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #710B07;
    margin-bottom: 1rem;
    border-left: 4px solid #D6B46A;
    padding-left: 1rem;
}

.sobre-historia p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.sobre-historia p strong {
    color: #D6B46A;
    font-weight: 700;
}

.sobre-mision-vision {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sobre-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(214, 180, 106, 0.2);
    transition: all 0.3s ease;
}

.sobre-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #D6B46A;
}

.sobre-card .sobre-icono {
    font-size: 2rem;
}

.sobre-card h3 {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #710B07;
    margin-bottom: 0.8rem;
}

.sobre-card p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.sobre-valores {
    margin-bottom: 3rem;
}

.sobre-valores > h3 {
    font-family: 'Arial', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #710B07;
    text-align: center;
    margin-bottom: 2rem;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.valor-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(214, 180, 106, 0.15);
}

.valor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #D6B46A;
}

.valor-item span {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.8rem;
}

.valor-item h4 {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #710B07;
    margin-bottom: 0.5rem;
}

.valor-item p {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
}

.sobre-cifras {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    background: rgba(113, 11, 7, 0.05);
    border-radius: 40px;
    padding: 2rem;
}

.cifra-item {
    text-align: center;
}

.cifra-numero {
    font-family: 'Arial', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #D6B46A;
    display: block;
    margin-bottom: 0.3rem;
}

.cifra-texto {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    color: #710B07;
    font-weight: 600;
}

.sobre-frase {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #710B07, #8B1A15);
    border-radius: 28px;
    color: #ffffff;
}

.sobre-frase p {
    font-family: 'Arial', sans-serif;
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.sobre-frase span {
    font-family: 'Arial', sans-serif;
    font-size: 0.8rem;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .sobre-title {
        font-size: 2rem;
    }
    .sobre-section {
        padding: 8rem 1.5rem;
    }
    .sobre-cifras {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .valores-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .sobre-frase p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .sobre-title {
        font-size: 1.6rem;
    }
    .sobre-historia h3,
    .sobre-card h3 {
        font-size: 1.2rem;
    }
    .sobre-cifras {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    .cifra-numero {
        font-size: 1.5rem;
    }
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .valor-item {
        padding: 1rem;
    }
    .sobre-frase {
        padding: 1.5rem;
    }
    .sobre-frase p {
        font-size: 0.95rem;
    }
}

/* ===== SECCIÓN LIBRO DE RECLAMACIONES ===== */
.reclamaciones-section {
    padding: 10rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #faf7f2 100%);
    position: relative;
}

.reclamaciones-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #710B07, #D6B46A, #710B07);
}

.reclamaciones-container {
    max-width: 1280px;
    margin: 0 auto;
}

.reclamaciones-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reclamaciones-title {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #710B07;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.reclamaciones-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.reclamaciones-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
}

.reclamaciones-formulario {
    background: #ffffff;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.reclamaciones-formulario h3 {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #710B07;
    margin-bottom: 0.5rem;
    border-left: 4px solid #D6B46A;
    padding-left: 1rem;
}

.form-leyenda {
    font-family: 'Arial', sans-serif;
    font-size: 0.7rem;
    color: #999;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.form-seccion {
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0e6d2;
}

.form-seccion h4 {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #D6B46A;
    margin-bottom: 1rem;
}

.form-reclamacion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group label {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fefefe;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D6B46A;
    box-shadow: 0 0 0 3px rgba(214, 180, 106, 0.2);
}

.form-group small {
    font-family: 'Arial', sans-serif;
    font-size: 0.65rem;
    color: #999;
    margin-top: 0.2rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.form-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.form-check label {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
}

.form-botones {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-enviar-reclamo {
    background: #710B07;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    flex: 1;
}

.btn-enviar-reclamo:hover {
    background: #D6B46A;
    color: #710B07;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(113, 11, 7, 0.3);
}

.btn-limpiar {
    background: transparent;
    color: #999;
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-limpiar:hover {
    background: #f5f5f5;
    color: #710B07;
    border-color: #710B07;
}

.mensaje-reclamacion {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #e8f5e9;
    border-radius: 12px;
    text-align: center;
}

.mensaje-reclamacion p {
    font-family: 'Arial', sans-serif;
    color: #2e7d32;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.reclamaciones-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card-reclamo {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(214, 180, 106, 0.2);
}

.info-card-reclamo h3 {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #710B07;
    margin-bottom: 1rem;
}

.info-card-reclamo p {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
}

.info-card-reclamo ul {
    margin: 0.5rem 0 0 1.2rem;
    padding: 0;
}

.info-card-reclamo li {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 0.3rem;
}

.info-card-reclamo strong {
    color: #D6B46A;
}

.contacto-directo {
    background: linear-gradient(135deg, #fef8f0, #fff5e8);
}

.btn-whatsapp-reclamo,
.btn-email-reclamo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.7rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.8rem;
}

.btn-email-reclamo {
    background: #710B07;
}

.btn-whatsapp-reclamo:hover {
    background: #20b859;
    transform: scale(1.02);
}

.btn-email-reclamo:hover {
    background: #8B1A15;
    transform: scale(1.02);
}

.sello {
    text-align: center;
    background: #f5f0e6;
}

.sello-contenido span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.sello-contenido p {
    font-size: 0.7rem;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .reclamaciones-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .reclamaciones-title {
        font-size: 2rem;
    }
    .reclamaciones-section {
        padding: 8rem 1.5rem;
    }
    .reclamaciones-formulario {
        padding: 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .form-botones {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .reclamaciones-title {
        font-size: 1.6rem;
    }
    .reclamaciones-formulario h3 {
        font-size: 1.2rem;
    }
    .info-card-reclamo h3 {
        font-size: 1rem;
    }
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s ease;
}

.popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

.popup-container {
    width: 85%;
    max-width: 420px;
    background: #fdf3e0;
    background-image: linear-gradient(145deg, #fff5e8 0%, #fbe9d2 100%);
    border-radius: 32px 24px 32px 24px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4), 0 0 0 6px #e7cba5, 0 0 0 10px #b97f44;
    position: relative;
    font-family: 'Arial', sans-serif;
    transition: transform 0.25s ease;
    transform: scale(0.95);
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.close-popup {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #9e3c1a;
    color: #ffefcf;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 20;
    border: 1px solid #fad192;
}

.close-popup:hover {
    background-color: #bf4f28;
    transform: rotate(90deg);
}

.festival-content {
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
}

.festival-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #7a2e0e;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    text-shadow: 2px 2px 0 #ffd58c;
    font-family: 'Roshmary', 'Montserrat', sans-serif;
}

.chiriuchu-accent {
    background: linear-gradient(135deg, #c06624, #a14412);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: none;
    display: inline-block;
}

.sub-date {
    font-size: 1rem;
    font-weight: 700;
    background: #e9c68b;
    display: inline-block;
    padding: 0.15rem 1rem;
    border-radius: 40px;
    color: #3f1d09;
    margin: 6px 0 10px 0;
    box-shadow: inset 0 -1px 0 #c28a48, 0 2px 5px rgba(0, 0, 0, 0.05);
    font-family: 'Arial', sans-serif;
}

.menu-list {
    background: #faf0e2;
    border-radius: 28px;
    padding: 0.3rem 0rem;
    margin: 12px 0 12px;
    border: 1px solid #efdbb8;
    box-shadow: 0 3px 8px rgba(100, 50, 10, 0.08);
}

.menu-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.3rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #44270e;
    border-bottom: 1px dashed #e9cfaa;
    font-family: 'Arial', sans-serif;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 600;
    font-size: 0.85rem;
}

.item-dot {
    flex: 1;
    border-bottom: 1.5px dotted #c7a16b;
    margin: 0 6px;
    height: 1em;
}

.item-price {
    font-weight: 700;
    color: #a14216;
    background: #fff0de;
    padding: 0.1rem 0.5rem;
    border-radius: 30px;
    font-size: 0.7rem;
}

.happy-hour {
    background: linear-gradient(120deg, #d4903a, #bb631f);
    margin: 10px 0 12px;
    padding: 6px 0;
    border-radius: 40px;
    color: #fff3cf;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 #6f2d07;
    box-shadow: 0 3px 0 #753b14;
    font-family: 'Arial', sans-serif;
}

.twoxone {
    font-size: 1.6rem;
    font-weight: 900;
    margin-left: 5px;
}

.reservas-section {
    background: #e2cbaa;
    padding: 8px 6px;
    border-radius: 28px;
    margin-top: 8px;
    margin-bottom: 6px;
}

.reservas-title {
    font-weight: 700;
    color: #48200b;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.phone-numbers {
    font-size: 1rem;
    font-weight: 800;
    color: #1a2f1f;
    background: #fff1dd;
    display: inline-block;
    padding: 0.15rem 0.8rem;
    border-radius: 50px;
    margin: 4px 0;
    font-family: 'Arial', monospace;
    letter-spacing: 0.5px;
}

.address {
    font-size: 0.7rem;
    color: #5a351b;
    font-weight: 500;
    background: #f7e5cf;
    padding: 4px 10px;
    border-radius: 40px;
    display: inline-block;
    max-width: 95%;
    font-family: 'Arial', sans-serif;
}

.address strong {
    font-weight: 800;
    color: #923a12;
}

.decoration-icon {
    font-size: 1rem;
    margin: 4px 0 0;
    letter-spacing: 3px;
    color: #c2813a;
}

.btn-reserva {
    background: #7f421f;
    border: none;
    color: #ffefcf;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 40px;
    width: 70%;
    font-size: 0.85rem;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.btn-reserva:hover {
    background: #9c551f;
    transform: scale(0.98);
}

@media (max-width: 550px) {
    .festival-title {
        font-size: 1.3rem;
    }
    .happy-hour {
        font-size: 1.1rem;
    }
    .twoxone {
        font-size: 1.3rem;
    }
    .menu-item {
        padding: 0.25rem 0.8rem;
        font-size: 0.75rem;
    }
    .phone-numbers {
        font-size: 0.85rem;
    }
    .popup-container {
        max-width: 90%;
        width: 90%;
    }
    .festival-content {
        padding: 0.8rem 1rem 1rem 1rem;
    }
    .sub-date {
        font-size: 0.85rem;
    }
}

/* ===== SECCIÓN DE MAPAS ===== */
.mapas-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #faf5ea 0%, #f0e8d9 100%);
    position: relative;
    overflow: hidden;
}

.mapas-section::before {
    content: "🏔️";
    position: absolute;
    font-size: 350px;
    opacity: 0.03;
    bottom: -50px;
    right: -50px;
    pointer-events: none;
    transform: rotate(-15deg);
}

.container-mapas {
    max-width: 1300px;
    margin: 0 auto;
}

.mapas-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #5a2d14;
    margin-bottom: 0.5rem;
    font-family: 'Roshmary', 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

.mapas-subtitle {
    text-align: center;
    color: #8b5a3a;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
    font-family: 'Arial', sans-serif;
}

.mapas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    align-items: stretch;
}

.mapa-card {
    background: white;
    border-radius: 28px;
    padding: 1.2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.mapa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.mapa-card-centro.destacado {
    background: linear-gradient(145deg, #fff8ed, #fff3e4);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 4px #c2813a, 0 0 0 8px #f5e6d3;
    z-index: 2;
}

.mapa-card-centro.destacado:hover {
    transform: scale(1.03) translateY(-5px);
}

.destacado-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c2813a, #9b5e2c);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    font-family: 'Arial', sans-serif;
}

.mapa-nombre {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0e0c5;
}

.mapa-nombre h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #4a2a12;
    margin: 0;
    line-height: 1.3;
    font-family: 'Arial', sans-serif;
}

.mapa-icon {
    font-size: 1.3rem;
}

.mapa-contenedor {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.mapa-distancia {
    font-size: 0.75rem;
    color: #7a5a3a;
    text-align: center;
    margin-top: 0.5rem;
    background: #f8f0e4;
    display: inline-block;
    width: 100%;
    padding: 0.3rem;
    border-radius: 30px;
    font-family: 'Arial', sans-serif;
}

.mapa-direccion {
    font-size: 0.75rem;
    color: #5a351b;
    text-align: center;
    margin: 0.8rem 0;
    background: #f0e4d4;
    padding: 0.5rem;
    border-radius: 12px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
}

.mapa-cta {
    text-align: center;
    margin-top: 1rem;
}

.btn-mapa {
    display: inline-block;
    background: #7f421f;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.btn-mapa:hover {
    background: #9c551f;
    transform: scale(1.02);
}

.mapas-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2cbaa;
    color: #7a5a3a;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 1000px) {
    .mapas-grid {
        gap: 1rem;
    }
    .mapa-nombre h3 {
        font-size: 0.85rem;
    }
}

@media (max-width: 850px) {
    .mapas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    .mapa-card-centro.destacado {
        transform: scale(1);
        order: -1;
    }
    .mapa-card-centro.destacado:hover {
        transform: scale(1.01);
    }
    .mapas-title {
        font-size: 1.8rem;
    }
    .destacado-badge {
        white-space: nowrap;
        font-size: 0.65rem;
        top: -10px;
    }
}

@media (max-width: 480px) {
    .mapas-section {
        padding: 3rem 1rem;
    }
    .mapa-card {
        padding: 0.8rem;
    }
    .mapas-title {
        font-size: 1.4rem;
    }
}

/* Estilos para los íconos PNG */
.mapa-icon-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    display: inline-block;
}

/* Ajuste responsivo para los íconos */
@media (max-width: 850px) {
    .mapa-icon-img {
        width: 50px;
        height: 50px;
    }
}

.mapa-nombre {
    display: flex;
    align-items: center;
    gap: 10px; /* Aumenté ligeramente el gap para mejor separación */
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0e0c5;
}

/* Asegurar que los íconos no distorsionen el layout */
.mapa-nombre img {
    flex-shrink: 0;
}

/* ===== SECCIÓN MEDIOS DE PAGO ===== */
.footer-pagos {
    text-align: center;
    margin: 2rem 0 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.footer-pagos h3 {
    font-family: 'Roshmary', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #D6B46A;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.pagos-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pago-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.pago-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.pago-item:hover .pago-icon {
    transform: translateY(-3px);
}

.pago-item span:last-child {
    font-family: 'Arial', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Iconos específicos con colores al hover */
.pago-icon.visa:hover {
    text-shadow: 0 0 8px #1a1f71;
}

.pago-icon.mastercard:hover {
    text-shadow: 0 0 8px #eb001b;
}

.pago-icon.yape:hover {
    text-shadow: 0 0 8px #25D366;
}

.pago-icon.efectivo:hover {
    text-shadow: 0 0 8px #4caf50;
}

.pago-icon.transferencia:hover {
    text-shadow: 0 0 8px #D6B46A;
}

/* Responsive */
@media (max-width: 768px) {
    .pagos-icons {
        gap: 1.2rem;
    }
    
    .pago-icon {
        font-size: 1.5rem;
    }
    
    .pago-item span:last-child {
        font-size: 0.6rem;
    }
    
    .footer-pagos h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pagos-icons {
        gap: 1rem;
    }
    
    .pago-icon {
        font-size: 1.3rem;
    }
    
    .pago-item span:last-child {
        font-size: 0.55rem;
    }
}

.pago-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
    color: #ffffff;
}

.pago-item:hover .pago-icon {
    transform: translateY(-3px);
}

.pago-item span:last-child {
    font-family: 'Arial', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   FLYER - CLASES DE COCINA (FONDO COMPLETO)
   ============================================ */

.flyer-cocina {
    position: relative;
    width: 100%;
    min-height: 550px;
    background: url('/img/clases-cocina-fondo.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem;
    overflow: hidden;
}

/* Overlay oscuro para que el texto resalte */
.flyer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Contenido del flyer */
.flyer-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

/* Badge superior */
.flyer-badge {
    display: inline-block;
    background: #D6B46A;
    color: #710B07;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

/* Título */
.flyer-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: 'Roshmary', 'Cormorant Garamond', serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.title-light {
    font-weight: 400;
    color: #D6B46A;
    font-family: 'Roshmary', 'Cormorant Garamond', serif;
}

/* Línea decorativa */
.flyer-divider {
    width: 80px;
    height: 3px;
    background: #D6B46A;
    margin: 1rem auto;
}

/* Descripción */
.flyer-description {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Badges de nacionalidad */
.flyer-audience {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.badge-nacional,
.badge-extranjero {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.badge-nacional {
    background: rgba(214, 180, 106, 0.9);
    color: #710B07;
}

.badge-extranjero {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Características */
.flyer-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.flyer-features span {
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
}

/* Botón CTA */
.flyer-btn {
    display: inline-block;
    background: #25D366;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.flyer-btn:hover {
    background: #20b859;
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Animación */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .flyer-cocina {
        min-height: 500px;
        background-attachment: scroll;
        padding: 3rem 1rem;
    }
    
    .flyer-title {
        font-size: 2.5rem;
    }
    
    .flyer-description {
        font-size: 1rem;
    }
    
    .flyer-features {
        gap: 0.8rem;
    }
    
    .flyer-features span {
        font-size: 0.75rem;
    }
    
    .badge-nacional,
    .badge-extranjero {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }
    
    .flyer-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .flyer-title {
        font-size: 1.8rem;
    }
    
    .flyer-description {
        font-size: 0.85rem;
    }
    
    .flyer-features {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .flyer-audience {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
}

/* ============================================
   SECCIÓN MÚSICA ANDINA EN VIVO
   ============================================ */

.musica-andina {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    height: 600px;
    background: url('/img/musica-andina.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Overlay oscuro para legibilidad */
.musica-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.45));
    z-index: 1;
}

/* Contenido */
.musica-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

/* Badge */
.musica-badge {
    display: inline-block;
    background: #D6B46A;
    color: #710B07;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

/* Título */
.musica-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: 'Roshmary', 'Cormorant Garamond', serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.title-light {
    font-weight: 400;
    color: #D6B46A;
    font-family: 'Roshmary', 'Cormorant Garamond', serif;
}

/* Línea decorativa */
.musica-divider {
    width: 80px;
    height: 3px;
    background: #D6B46A;
    margin: 1rem auto;
}

/* Descripción */
.musica-description {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Horarios */
.musica-horarios {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 100%;
    max-width: 450px;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Arial', sans-serif;
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-dia {
    font-size: 0.9rem;
    font-weight: 600;
    color: #D6B46A;
}

.horario-hora {
    font-size: 0.9rem;
    color: #ffffff;
}

/* Instrumentos */
.musica-instrumentos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.musica-instrumentos span {
    background: rgba(214, 180, 106, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Botón */
.musica-btn {
    display: inline-block;
    background: #25D366;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.musica-btn:hover {
    background: #20b859;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Animación */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1250px) {
    .musica-andina {
        max-width: calc(100% - 2rem);
        margin: 3rem auto;
    }
}

@media (max-width: 768px) {
    .musica-andina {
        height: 550px;
        margin: 2rem auto;
    }
    
    .musica-title {
        font-size: 2.2rem;
    }
    
    .musica-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .horario-item {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
    
    .horario-dia,
    .horario-hora {
        font-size: 0.8rem;
    }
    
    .musica-instrumentos {
        gap: 0.5rem;
    }
    
    .musica-instrumentos span {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }
    
    .musica-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .musica-andina {
        height: 580px;
    }
    
    .musica-title {
        font-size: 1.8rem;
    }
    
    .musica-description {
        font-size: 0.8rem;
    }
    
    .musica-badge {
        font-size: 0.7rem;
    }
}