/* CSS Reset & Global Styles */
:root {
    --bg-color: #f8f7f5;
    --panel-bg: #ffffff;
    --primary-text: #2c2c2c;
    --secondary-text: #7f7f7f;
    --light-gray-bg: #edeae4;
    --gold-color: #c0a080;
    --christmas-red: #c82a2a;
    --dark-bg: #2c2c2c;
    --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background-color: var(--bg-color); color: var(--primary-text); }
body.modal-open { overflow: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
section { padding: 5rem 0; }

/* Accessibility */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--gold-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(192, 160, 128, 0.3);
}

/* Header */
.main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1.5rem 0; transition: all 0.3s ease; }
.main-header.scrolled { background-color: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px); box-shadow: var(--shadow-light); padding: 1rem 0; }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 40px; display: block; transition: filter 0.3s ease; }
.main-header.scrolled .logo img { filter: invert(1); }
.nav-links { list-style: none; display: none; gap: 2rem; margin-left: auto; }
.nav-links a { text-decoration: none; color: white; font-weight: 500; transition: color 0.3s ease; }
.main-header.scrolled .nav-links a { color: var(--primary-text); }
.nav-links a:hover { color: var(--gold-color); }
.cta-button { background-color: var(--christmas-red); color: white; border: none; border-radius: 30px; padding: 0.8rem 1.8rem; font-size: 1rem; font-weight: 500; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
.cta-button:hover { transform: scale(1.05); background-color: #a12222; }

/* Section Header */
.section-header { text-align: center; margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 0.5rem; }
.section-header p { font-size: 1.1rem; color: var(--secondary-text); }

/* Hero Section */
.hero { 
    height: 100vh; 
    background-image: url('https://ss-usa.s3.amazonaws.com/companies/MzY0NjA0MjIyAQA/uploads/Natal/Viale/Plano_de_Fundo.jpg');
    background-repeat: no-repeat; background-position: center center; background-size: cover; background-attachment: fixed;
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: white; 
    padding: 0 1rem;
}
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.4); }
.hero-content { 
    position: relative; 
    z-index: 2; 
    max-width: 600px; 
    width: 100%;
    text-align: center;
}
.hero-content h1 { 
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); 
    line-height: 1.2; 
    margin-bottom: 1rem; 
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.hero-content p { 
    font-size: clamp(1rem, 2vw, 1.2rem); 
    font-weight: 300; 
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.cta-button-transparent {
    background-color: transparent; color: white; border: 2px solid white;
    border-radius: 30px; padding: 0.8rem 1.8rem; font-size: 1rem; font-weight: 500;
    cursor: pointer; text-decoration: none; transition: all 0.3s ease; display: inline-block;
}
.cta-button-transparent:hover { background-color: white; color: var(--primary-text); transform: scale(1.05); }

/* Hotel Catalog Section */
.hotel-grid { 
    display: flex; overflow-x: auto; flex-wrap: nowrap; gap: 2rem;
    padding-bottom: 20px; margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem;
    -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--gold-color) transparent;
}
.hotel-grid::-webkit-scrollbar { height: 8px; }
.hotel-grid::-webkit-scrollbar-track { background: transparent; }
.hotel-grid::-webkit-scrollbar-thumb { background-color: var(--gold-color); border-radius: 10px; }
.hotel-card { 
    flex: 0 0 360px;
    background-color: var(--panel-bg); 
    border-radius: var(--border-radius); box-shadow: var(--shadow-light); 
    transition: all 0.3s ease; overflow: hidden; cursor: pointer;
    display: flex; flex-direction: column;
}
.hotel-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-dark); }
.hotel-card img { 
    width: 100%; 
    height: 250px;
    object-fit: cover; 
    transition: transform 0.4s ease; 
    flex-shrink: 0; 
}
.hotel-card:hover img { transform: scale(1.05); }
.card-content { 
    padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column;
}
.card-content h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.card-content p { color: var(--secondary-text); font-size: 0.9rem; margin-top: auto; }

/* Feature Sections */
.feature-section { background-color: var(--light-gray-bg); }
.feature-section.alt-bg { background-color: var(--bg-color); }
.two-column-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; }
.two-column-layout .image-content { min-height: 400px; }
.two-column-layout.layout-reversed .image-content { order: 2; }
.text-content h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.text-content p { font-size: 1.1rem; color: var(--secondary-text); line-height: 1.8; margin-bottom: 2rem; }
.amenities-grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.amenities-grid li { display: flex; align-items: center; gap: 0.8rem; color: var(--primary-text); font-size: 1rem; }
.amenities-grid i { font-size: 1.2rem; color: var(--gold-color); width: 25px; }

.collage-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr);
    gap: 1rem; height: 100%; max-height: 450px;
}
.collage-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow-light); }
.collage-grid img:first-child { grid-column: 1 / 2; grid-row: 1 / 3; }

/* Gastronomy Section */
.gastronomy-header { margin-bottom: 1.5rem; }
.gastronomy-icon {
    font-size: 1.5rem; color: var(--gold-color); margin-bottom: 0.5rem;
    background-color: var(--panel-bg); width: 50px; height: 50px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.gastronomy-header h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 0.25rem; }
.gastronomy-subtitle {
    font-size: 0.9rem; font-weight: 500; color: var(--secondary-text);
    text-transform: uppercase; letter-spacing: 1px;
}
.options-list { margin: 2rem 0; }
.option-pill {
    display: flex; justify-content: space-between; align-items: center;
    background-color: var(--panel-bg); padding: 1rem 1.5rem;
    border-radius: 12px; margin-bottom: 1rem; text-decoration: none;
    color: var(--primary-text); font-weight: 500; transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}
.option-pill:hover { background-color: var(--gold-color); color: white; transform: translateY(-2px); box-shadow: var(--shadow-dark); }
.disclaimer-text { font-size: 0.8rem; color: var(--secondary-text); font-style: italic; }

/* Auto Carousel */
.auto-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}
.auto-carousel-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.auto-carousel-slide.active { opacity: 1; }
.auto-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

/* Location Section */
.location-section { background-color: var(--panel-bg); }
.location-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.location-info h2 { font-size: clamp(1.8rem, 4vw, 2.2rem); margin-bottom: 2rem; line-height: 1.3; }
.location-group { margin-bottom: 2rem; }
.location-group h3 {
    font-size: 0.9rem; font-weight: 500; color: var(--secondary-text);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem;
    padding-bottom: 0.5rem; border-bottom: 1px solid var(--light-gray-bg);
}
.location-list { list-style: none; padding: 0; }
.location-list li { display: flex; align-items: center; padding: 0.75rem 0; font-weight: 500; }
.location-list i {
    color: var(--primary-text); font-size: 1.1rem; width: 35px;
    text-align: center; margin-right: 0.5rem;
}
.location-list .distance { margin-left: auto; color: var(--secondary-text); font-weight: 400; font-size: 0.9rem; }
.location-map {
    width: 100%; height: 400px; border-radius: var(--border-radius);
    overflow: hidden; box-shadow: var(--shadow-dark);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.testimonial-card {
    background-color: var(--panel-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}
.testimonial-quote {
    font-size: 1.1rem;
    color: var(--primary-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-quote i {
    color: var(--gold-color);
    margin-right: 0.5rem;
}
.testimonial-author {
    font-weight: 600;
    color: var(--primary-text);
}

/* Urgency Section */
.urgency-section {
    background-color: var(--dark-bg);
    color: white;
}
.urgency-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.urgency-box h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}
.urgency-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

/* Newsletter Section */
.newsletter-section { background-color: var(--bg-color); }
.newsletter-box {
    background-color: var(--dark-bg);
    color: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.newsletter-box h2 { font-size: clamp(1.8rem, 4vw, 2.2rem); margin-bottom: 1rem; }
.newsletter-box p { color: rgba(255,255,255,0.7); max-width: 500px; margin-bottom: 2rem; }
.newsletter-form { 
    display: flex; 
    flex-direction: column;
    gap: 1rem;
    width: 100%; 
    max-width: 500px; 
}
.newsletter-form input {
    width: 100%;
    border: 1px solid #555;
    background-color: #444;
    color: white;
    padding: 0 1.5rem;
    height: 50px;
    font-size: 1rem;
    border-radius: 30px;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold-color); }
.newsletter-form button {
    height: 50px;
    border-radius: 30px;
    padding: 0 2rem;
}

/* Scroll Animation */
.fade-in-section { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-section.is-visible { opacity: 1; transform: translateY(0); }

/* Footer */
.main-footer { background-color: var(--dark-bg); color: var(--secondary-text); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-column h3 { color: white; font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 0.75rem; }
.footer-column ul a { color: var(--secondary-text); text-decoration: none; transition: color 0.3s ease; }
.footer-column ul a:hover { color: var(--gold-color); }
.footer-divider { border: none; border-top: 1px solid #444; margin: 2rem 0; }
.footer-middle { display: flex; justify-content: space-between; align-items: center; }
.footer-logo img { height: 40px; display: block; filter: none; }
.footer-socials a { color: white; font-size: 1.3rem; margin-left: 1.5rem; text-decoration: none; transition: color 0.3s ease; }
.footer-socials a:hover { color: var(--gold-color); }
.footer-bottom { text-align: center; font-size: 0.9rem; }

/* MODAL STYLES */
.modal-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); 
    display: flex; justify-content: center; align-items: center; z-index: 2000; padding: 1rem; 
    visibility: hidden; opacity: 0; transition: opacity 0.3s ease, visibility 0s 0.3s; 
}
.modal-overlay.active { visibility: visible; opacity: 1; transition: opacity 0.3s ease; }
.modal-content {
    background-color: var(--bg-color);
    width: 90%; max-width: 500px;
    border-radius: var(--border-radius); box-shadow: var(--shadow-dark);
    overflow: hidden; display: flex; flex-direction: column;
    transform: scale(0.9); transition: transform 0.3s ease;
    max-height: 90vh;
}
.modal-overlay.active .modal-content { transform: scale(1); }
.modal-header {
    position: relative; width: 100%; overflow: hidden; color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    height: 250px; flex-shrink: 0;
}
.modal-carousel-track { display: flex; height: 100%; transition: transform 0.4s ease; }
.modal-carousel-slide { min-width: 100%; height: 100%; }
.modal-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.modal-carousel-controls {
    position: absolute; top: 50%; width: 100%;
    display: flex; justify-content: space-between;
    padding: 0 1rem; transform: translateY(-50%); z-index: 10;
}
.modal-carousel-button {
    background-color: rgba(0,0,0,0.4); border: none; width: 30px; height: 30px; border-radius: 50%;
    color: white; cursor: pointer; display: flex; justify-content: center; align-items: center;
    font-size: 0.8rem; opacity: 0.7; transition: opacity 0.3s ease;
}
.modal-carousel-button:hover { opacity: 1; }
.modal-header-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; justify-content: flex-end; padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    pointer-events: none;
}
.modal-header-overlay .close-modal-btn { pointer-events: all; }
.close-modal-btn {
    background-color: rgba(0,0,0,0.4); border: none; width: 30px; height: 30px; border-radius: 50%;
    color: white; cursor: pointer; display: flex; justify-content: center; align-items: center;
    font-size: 1rem; opacity: 0.7; transition: opacity 0.3s ease;
}
.close-modal-btn:hover { opacity: 1; }
.modal-details-wrapper { flex-grow: 1; display: flex; flex-direction: column; overflow: hidden; }
.modal-hotel-details { padding: 1.5rem; border-bottom: 1px solid #eee; }
.modal-hotel-details h2 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--primary-text); }
.modal-hotel-details p { font-size: 0.9rem; color: var(--secondary-text); }
.modal-body { padding: 0 1.5rem 1.5rem 1.5rem; overflow-y: auto; }
.modal-body h3 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; margin-top: 1.5rem; color: var(--primary-text); text-transform: uppercase; letter-spacing: 0.5px; }
.modal-description { line-height: 1.6; color: var(--secondary-text); font-size: 0.9rem; }
.amenity-item { display: flex; align-items: center; gap: 0.8rem; color: var(--secondary-text); font-size: 0.9rem; margin-bottom: 0.5rem; }
.amenity-item i { color: var(--gold-color); width: 18px; text-align: center; font-size: 1rem; }
.modal-footer {
    background-color: var(--panel-bg); padding: 1rem 1.5rem;
    border-top: 1px solid #eee; margin-top: auto;
    display: flex; justify-content: space-between; align-items: center;
}
.modal-price .amount { font-size: 1.3rem; font-weight: 700; color: var(--primary-text); }

/* Responsive Styles */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .hotel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); overflow-x: hidden; padding-bottom: 0; margin: 0; }
    .hotel-card { flex-basis: auto; }
    .two-column-layout { grid-template-columns: 1fr; }
    .two-column-layout.layout-reversed .image-content { order: -1; }
    .text-content { text-align: center; }
    .amenities-grid { display: inline-grid; text-align: left; }
    .footer-middle { flex-direction: column; gap: 1.5rem; }
    .location-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gastronomy-header { align-items: center; }
    .newsletter-box { padding: 2.5rem 1.5rem; }
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .modal-content {
        flex-direction: row; 
        max-width: 1100px;
        max-height: 650px;
    }
    .modal-header {
        width: 55%; border-radius: var(--border-radius) 0 0 var(--border-radius); height: auto;
    }
    .modal-details-wrapper {
        width: 45%;
    }
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .hero {
        justify-content: flex-start;
        padding: 0 8%;
    }
    .hero-content {
        text-align: left;
    }

    .location-grid {
        grid-template-columns: 40% 60%;
    }
    .location-map {
        height: 500px;
    }
}


/* STORIES SECTION */
.stories-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
    background-color: var(--bg-color);
}

.stories-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.story-card {
    position: relative;
    width: 200px; /* Largura estilo celular */
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.story-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(192, 160, 128, 0.4); /* Sombra dourada */
}

.story-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.story-card:hover .story-bg {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.story-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.story-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--gold-color);
    padding: 4px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.story-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}

.story-icon {
    font-size: 1.5rem;
    margin-top: 5px;
    color: var(--gold-color);
    opacity: 0.8;
}

/* MODAL DE PROGRAMAÇÃO - ESTILO DOCUMENTO */
.prog-modal-content {
    max-width: 700px;
    height: 90vh; /* Ocupa 90% da altura */
    display: block; /* Diferente do modal de hotel que era flex */
}

.close-modal-btn.top-right {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background-color: rgba(0,0,0,0.6);
}

.prog-body {
    padding: 0;
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
}

/* Header interno do modal */
.prog-header-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.prog-content-wrapper {
    padding: 2rem;
}

.prog-title-main {
    color: var(--christmas-red);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.prog-subtitle {
    color: #555;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Tipografia do Menu */
.menu-section {
    margin-bottom: 2.5rem;
}

.menu-section h3 {
    font-size: 1.3rem;
    color: var(--primary-text);
    background-color: #f4f4f4;
    padding: 10px 15px;
    border-left: 4px solid var(--gold-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-section h4 {
    color: var(--gold-color);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
}

.menu-section ul {
    list-style: none;
    padding-left: 10px;
}

.menu-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #444;
    line-height: 1.5;
}

.menu-section ul li::before {
    content: "•";
    color: var(--christmas-red);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.2;
}

.menu-obs {
    font-size: 0.85rem;
    color: #888;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .stories-grid {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 20px;
        flex-wrap: nowrap;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .story-card {
        width: 160px;
        height: 260px;
    }
}/* STORIES SECTION */
.stories-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
    background-color: var(--bg-color);
}

.stories-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.story-card {
    position: relative;
    width: 200px; /* Largura estilo celular */
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.story-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(192, 160, 128, 0.4); /* Sombra dourada */
}

.story-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.story-card:hover .story-bg {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.story-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.story-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--gold-color);
    padding: 4px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.story-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}

.story-icon {
    font-size: 1.5rem;
    margin-top: 5px;
    color: var(--gold-color);
    opacity: 0.8;
}

/* SECTION DA LISTA DE PROGRAMAÇÃO */
.program-list-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
    background-color: #f8f7f5;
}

.program-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.program-card {
    display: flex;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: stretch;
    border: 1px solid #eee;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(192, 160, 128, 0.2);
}

.program-card-img {
    width: 40%;
    background-size: cover;
    background-position: center;
    min-height: 250px;
}

.program-card-content {
    width: 60%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-tag {
    display: inline-block;
    background-color: #edeae4;
    color: #7f7f7f;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}

.program-card-content h3 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.program-card-content p {
    color: #7f7f7f;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.program-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Botão Programação (Outline Dourado) */
.btn-programacao {
    background-color: transparent;
    border: 2px solid #c0a080;
    color: #c0a080;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.btn-programacao:hover {
    background-color: #c0a080;
    color: white;
}

/* Botão Reserva (Sólido Vermelho) */
.btn-reserva-card {
    background-color: #c82a2a;
    border: 2px solid #c82a2a;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.btn-reserva-card:hover {
    background-color: #a12222;
    border-color: #a12222;
    transform: scale(1.05);
}

/* CSS DO MODAL DE PROGRAMAÇÃO */
.prog-modal-content { max-width: 700px; height: 90vh; display: block; position: relative; }
.prog-modal-content .close-modal-btn.top-right { position: absolute; top: 15px; right: 15px; z-index: 20; background-color: rgba(0,0,0,0.6); }
.prog-body { padding: 0; height: 100%; overflow-y: auto; background-color: #fff; }
.prog-header-img { width: 100%; height: 200px; object-fit: cover; }
.prog-content-wrapper { padding: 2rem; }
.prog-title-main { color: #c82a2a; font-size: 1.8rem; margin-bottom: 0.5rem; border-bottom: 2px solid #c0a080; padding-bottom: 1rem; margin-bottom: 1.5rem; }
.prog-subtitle { color: #555; font-size: 1rem; margin-bottom: 2rem; font-style: italic; }
.menu-section { margin-bottom: 2.5rem; }
.menu-section h3 { font-size: 1.3rem; color: #2c2c2c; background-color: #f4f4f4; padding: 10px 15px; border-left: 4px solid #c0a080; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.menu-section h4 { color: #c0a080; font-size: 1.1rem; margin: 1.5rem 0 0.5rem 0; font-weight: 600; }
.menu-section ul { list-style: none; padding-left: 10px; }
.menu-section ul li { position: relative; padding-left: 20px; margin-bottom: 8px; color: #444; line-height: 1.5; }
.menu-section ul li::before { content: "•"; color: #c82a2a; position: absolute; left: 0; font-weight: bold; font-size: 1.2rem; line-height: 1.2; }
.menu-obs { font-size: 0.85rem; color: #888; margin-top: 2rem; border-top: 1px solid #eee; padding-top: 1rem; text-align: center; }

/* RESPONSIVO - AJUSTE DE HARMONIA MOBILE */
@media (max-width: 768px) {
    .program-list-wrapper {
        gap: 2.5rem; /* Mais espaço entre um card e outro */
    }

    .program-card {
        flex-direction: column; /* Empilha imagem em cima, texto embaixo */
        height: auto; /* A altura se ajusta ao conteúdo */
        border-radius: 24px; /* Arredondamento suave */
    }

    .program-card-img {
        width: 100%;
        height: 250px; /* Altura fixa para a foto ficar bonita */
        min-height: 250px;
        background-position: center top; /* Foca mais no topo/centro da foto */
    }

    .program-card-content {
        width: 100%;
        padding: 2rem 1.5rem; /* Espaçamento interno confortável */
        text-align: center; /* Centraliza tudo para ficar elegante */
        display: flex;
        flex-direction: column;
        align-items: center; /* Garante centralização dos itens flex */
    }

    .program-tag {
        margin-bottom: 1rem; /* Espaço abaixo da tag */
    }

    .program-card-content h3 {
        font-size: 1.6rem; /* Tamanho de título bom para leitura */
        margin-bottom: 0.8rem;
    }

    .program-card-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .program-buttons {
        width: 100%;
        flex-direction: column; /* Botões empilhados */
        gap: 1rem;
    }

    .btn-programacao, 
    .btn-reserva-card {
        width: 100%; /* Botão "full width" (largura total) */
        display: block;
        padding: 1rem; /* Área de toque maior */
    }
}

/* CONTADOR REGRESSIVO */
.countdown-section {
    background-color: var(--dark-bg); /* Fundo escuro para destaque */
    background-image: radial-gradient(circle at center, #3a3a3a 0%, #2c2c2c 100%);
    padding: 3rem 0;
    color: white;
    text-align: center;
    border-bottom: 4px solid var(--gold-color);
}

.countdown-wrapper h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
    color: var(--gold-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.timer-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.time-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    color: white;
    font-variant-numeric: tabular-nums; /* Mantém os números alinhados */
}

.time-label {
    font-size: 0.9rem;
    color: #aaa;
    text-transform: uppercase;
    margin-top: 0.5rem;
    font-weight: 500;
}

.time-separator {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-color);
    font-weight: 300;
    margin-top: -5px;
}

.cta-button-outline {
    display: inline-block;
    border: 2px solid var(--gold-color);
    color: var(--gold-color);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button-outline:hover {
    background-color: var(--gold-color);
    color: white;
    transform: scale(1.05);
}

/* Responsivo do Contador */
@media (max-width: 768px) {
    .timer-grid {
        gap: 0.5rem;
    }
    .time-box {
        min-width: 60px;
    }
    .time-separator {
        font-size: 2rem;
    }
}