/* ==================== VARIÁVEIS GLOBAIS ==================== */
:root {
    /* Cores Principais */
    --primary-gold: #c6a43b;
    --primary-gold-dark: #a5832e;
    --primary-gold-light: #e0c67a;

    --dark-bg: #1e2a32;
    --dark-bg-light: #2a3b44;
    --dark-text: #1e2a32;

    --light-bg: #fefcf8;
    --light-gray: #f8f5ef;
    --medium-gray: #e2e8f0;
    --text-dark: #1e2a32;
    --text-medium: #5b6f82;
    --text-light: #7e8c9e;

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    /* Bordas */
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 28px;
    --border-radius-xl: 40px;
    --border-radius-full: 50%;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-Index */
    --z-header: 1000;
    --z-modal: 2000;
    --z-tooltip: 1500;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ==================== ANIMAÇÕES ==================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.fade-up {
    animation: fadeUp 0.8s ease forwards;
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    padding: 1rem 2rem;
    transition: var(--transition-normal);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 0.8rem 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.logo i {
    color: var(--primary-gold);
    margin-right: 0.3rem;
}

.logo span {
    color: var(--primary-gold);
}

.header.scrolled .logo {
    color: var(--dark-text);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    font-size: 0.95rem;
    position: relative;
}

.header.scrolled .nav-link {
    color: var(--dark-text);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-reservar {
    background: var(--primary-gold);
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius-xl);
    color: white !important;
    transition: var(--transition-fast);
}

.btn-reservar:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
}

.btn-reservar::after {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: white;
    cursor: pointer;
}

.header.scrolled .menu-toggle {
    color: var(--dark-text);
}

/* ==================== HERO SECTION (PÁGINA INICIAL) ==================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)),
        url('../images/img1.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 850px;
    padding: 0 1rem;
    z-index: 2;
}

.hero-content h6 {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ==================== BOOKING CARD (FORMULÁRIO DE RESERVA) ==================== */
.booking-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    max-width: 1100px;
    margin: -80px auto 0 auto;
    position: relative;
    z-index: 20;
    transition: var(--transition-normal);
}

.booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: flex-end;
    justify-content: center;
}

.input-group-modern {
    flex: 1;
    min-width: 150px;
}

.input-group-modern label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-text);
    display: block;
    margin-bottom: 0.4rem;
}

.input-group-modern input,
.input-group-modern select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-xl);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: #fff;
    transition: var(--transition-fast);
}

.input-group-modern input:focus,
.input-group-modern select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(198, 164, 59, 0.2);
}

.btn-book {
    background: var(--primary-gold);
    border: none;
    padding: 12px 28px;
    border-radius: var(--border-radius-xl);
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1rem;
    margin-top: 1.4rem;
}

.btn-book:hover {
    background: var(--primary-gold-dark);
    transform: scale(1.02);
}

/* ==================== ROOMS SECTION (ACOMODAÇÕES) ==================== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.room-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.room-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.room-card:hover .room-img {
    transform: scale(1.02);
}

.room-info {
    padding: 1.8rem;
}

.room-info h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0.7rem 0;
}

.price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-medium);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary-gold);
    padding: 10px 20px;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 1rem;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
}

/* ==================== FACILITIES SECTION (INSTALAÇÕES) ==================== */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2rem;
    text-align: center;
}

.facility-item {
    background: var(--light-gray);
    padding: 2rem 1rem;
    border-radius: var(--border-radius-xl);
    transition: var(--transition-normal);
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.facility-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.facility-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.facility-item p {
    color: var(--text-medium);
}

/* ==================== TESTIMONIALS SECTION (DEPOIMENTOS) ==================== */
.testimonial-swiper {
    width: 100%;
    padding: 1rem 0 3rem;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    margin: 0.5rem;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.stars i {
    color: #f5b042;
    margin: 0 1px;
}

.testimonial-card h4 {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--dark-text);
}

/* Swiper Customização */
.swiper-pagination-bullet-active {
    background: var(--primary-gold) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-gold) !important;
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter {
    background: linear-gradient(105deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.newsletter form {
    display: flex;
    max-width: 500px;
    margin: 1.5rem auto 0;
    gap: 0.5rem;
}

.newsletter input {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--border-radius-xl);
    border: none;
    font-size: 1rem;
}

.newsletter input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-gold);
}

.newsletter button {
    background: var(--primary-gold);
    border: none;
    border-radius: var(--border-radius-xl);
    padding: 0 28px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter button:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: var(--spacing-xl) 2rem var(--spacing-md);
    margin-top: var(--spacing-xxl);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-col h4 i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.footer-rating {
    margin-top: var(--spacing-sm);
    color: var(--primary-gold);
}

.footer-rating span {
    color: var(--text-light);
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    min-width: 25px;
}

.footer-newsletter {
    display: flex;
    margin: var(--spacing-sm) 0;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: var(--border-radius-xl) 0 0 var(--border-radius-xl);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-newsletter input::placeholder {
    color: var(--text-light);
}

.footer-newsletter input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.footer-newsletter button {
    background: var(--primary-gold);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 0 var(--border-radius-xl) var(--border-radius-xl) 0;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
}

.footer-newsletter button:hover {
    background: var(--primary-gold-dark);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-copyright {
    font-size: 0.85rem;
}

.footer-payments {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--text-light);
}

.footer-payments i {
    transition: var(--transition-fast);
    cursor: pointer;
}

.footer-payments i:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

/* ==================== BOTÕES ==================== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-gold);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== SEÇÕES ==================== */
.section {
    padding: var(--spacing-xxl) 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl) auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ==================== CARDS ==================== */
.card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: var(--z-modal);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: fadeUp 0.3s ease;
    text-align: center;
}

.modal-content i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.modal-content h3 {
    margin-bottom: 1rem;
}

/* ==================== UTILITÁRIOS ==================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--primary-gold);
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mt-5 {
    margin-top: var(--spacing-xl);
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mb-5 {
    margin-bottom: var(--spacing-xl);
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 1024px) {
    .section {
        padding: var(--spacing-xl) 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 850px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        right: 20px;
        padding: var(--spacing-md);
        border-radius: var(--border-radius-md);
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        min-width: 200px;
    }

    .header.scrolled .nav-links {
        background: white;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        color: var(--dark-text) !important;
    }

    .btn-reservar {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .booking-card {
        margin-top: -40px;
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-payments {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--spacing-lg) 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xxl: 3rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .booking-form {
        flex-direction: column;
    }

    .input-group-modern {
        width: 100%;
    }

    .btn-book {
        width: 100%;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter button {
        padding: 12px;
    }
}

/* ==================== PÁGINA DE ACOMODAÇÕES ==================== */
.accommodation-hero {
    height: 55vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('../images/img2.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
}

.accommodation-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.accommodation-hero .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Filtros */
.filters-bar {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 0.8rem 1.5rem;
    margin: -30px auto 2rem auto;
    max-width: 900px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.filter-btn {
    padding: 0.7rem 1.8rem;
    border-radius: var(--border-radius-xl);
    border: none;
    background: var(--light-gray);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-gold);
    color: white;
}

/* Grid de quartos */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Carrossel de imagens dentro do card */
.room-gallery {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-gallery .swiper {
    width: 100%;
    height: 100%;
}

.room-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-info {
    padding: 1.8rem;
}

.room-info h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.room-desc {
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0.8rem 0;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0;
}

.feature-tag {
    background: var(--light-gray);
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-xl);
    font-size: 0.75rem;
    color: var(--primary-gold);
    font-weight: 500;
}

/* Responsividade para acomodações */
@media (max-width: 1024px) {
    .accommodation-hero .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 850px) {
    .accommodation-hero {
        height: 45vh;
        min-height: 350px;
    }

    .accommodation-hero .hero-content h1 {
        font-size: 2rem;
    }

    .accommodation-hero .hero-content p {
        font-size: 1rem;
    }

    .filters-bar {
        border-radius: var(--border-radius-md);
        margin-top: -20px;
        padding: 0.5rem 1rem;
    }

    .filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .room-gallery {
        height: 240px;
    }

    .room-info h3 {
        font-size: 1.4rem;
    }

    .price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .accommodation-hero .hero-content h1 {
        font-size: 1.6rem;
    }

    .filters-bar {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==================== PÁGINA DE INSTALAÇÕES ==================== */
.facilities-hero {
    height: 55vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('../images/img4.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
}

.facilities-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.facilities-hero .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Categorias de Instalações */
.facilities-categories {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 0.8rem 1.5rem;
    margin: -30px auto 2rem auto;
    max-width: 900px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.category-btn {
    padding: 0.7rem 1.8rem;
    border-radius: var(--border-radius-xl);
    border: none;
    background: var(--light-gray);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-gold);
    color: white;
}

/* Container de Instalações */
.facilities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.facility-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.facility-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.facility-card:hover .facility-image img {
    transform: scale(1.05);
}

.facility-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.facility-overlay i {
    font-size: 1.5rem;
    color: white;
}

.facility-details {
    padding: 1.8rem;
}

.facility-details h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
}

.facility-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.facility-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.facility-hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius-md);
    color: var(--primary-gold);
    font-weight: 500;
}

.facility-hours i {
    font-size: 1rem;
}

.btn-book-facility {
    background: var(--primary-gold);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
    margin-top: 0.5rem;
}

.btn-book-facility:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
}

/* Diferenciais */
.differentials-section {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    margin: 2rem auto;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.differential-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.differential-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gold-light);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.differential-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.differential-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.differential-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Informações e Horários */
.info-section {
    background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg-light));
    border-radius: var(--border-radius-lg);
    color: white;
}

.info-card {
    padding: 2rem;
}

.info-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.info-content h2 i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Booking Highlight */
.booking-highlight {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    color: white;
}

.booking-highlight-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.booking-highlight-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.booking-highlight-content .btn-primary {
    background: white;
    color: var(--primary-gold);
}

.booking-highlight-content .btn-primary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 1024px) {
    .facilities-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .facilities-container {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 850px) {
    .facilities-hero {
        height: 45vh;
        min-height: 350px;
    }

    .facilities-hero .hero-content h1 {
        font-size: 2rem;
    }

    .facilities-hero .hero-content p {
        font-size: 1rem;
    }

    .facilities-categories {
        border-radius: var(--border-radius-md);
        margin-top: -20px;
        padding: 0.5rem 1rem;
    }

    .category-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    .facilities-container {
        grid-template-columns: 1fr;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .booking-highlight {
        padding: 2rem;
    }

    .booking-highlight-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .facility-image {
        height: 200px;
    }

    .facility-details h3 {
        font-size: 1.3rem;
    }

    .info-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .facilities-hero .hero-content h1 {
        font-size: 1.6rem;
    }

    .facilities-categories {
        flex-wrap: wrap;
    }

    .facility-features {
        gap: 0.4rem;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* ==================== PÁGINA DE GALERIA ==================== */
.gallery-hero {
    height: 55vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('../images/img3.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
}

.gallery-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gallery-hero .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Filtros da Galeria */
.gallery-filters {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 0.8rem 1.5rem;
    margin: -30px auto 2rem auto;
    max-width: 900px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.gallery-filter-btn {
    padding: 0.7rem 1.8rem;
    border-radius: var(--border-radius-xl);
    border: none;
    background: var(--light-gray);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: var(--primary-gold);
    color: white;
}

/* Grid da Galeria */
.gallery-section {
    padding-top: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.gallery-info p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.gallery-category {
    display: inline-block;
    background: var(--primary-gold);
    padding: 0.2rem 0.8rem;
    border-radius: var(--border-radius-xl);
    font-size: 0.7rem;
    font-weight: 500;
}

/* Botão Carregar Mais */
.gallery-load-more {
    text-align: center;
    margin-top: 3rem;
}

.gallery-load-more .btn {
    padding: 0.8rem 2rem;
}

/* Seção de Vídeo */
.video-section {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    margin: 2rem auto;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Seção de Destaques */
.highlights-section {
    background: white;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gold-light);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.highlight-icon i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.highlight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Instagram Feed */
.instagram-section {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
}

.instagram-section .section-title i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.instagram-post {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.instagram-post:hover img {
    transform: scale(1.05);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    display: flex;
    gap: 1.5rem;
    color: white;
    font-size: 1rem;
}

.instagram-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.instagram-stats i {
    font-size: 1.2rem;
}

/* Modal de Imagem Ampliada */
.modal-image-content {
    max-width: 90vw;
    max-height: 90vh;
    padding: 0;
    position: relative;
    background: transparent;
    box-shadow: none;
}

.modal-image-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary-gold);
}

.modal-caption {
    text-align: center;
    color: white;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: var(--border-radius-md);
}

.modal-caption h3 {
    margin-bottom: 0.3rem;
}

.modal-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.modal-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.modal-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: var(--border-radius-full);
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
    pointer-events: auto;
}

.modal-nav-btn:hover {
    background: var(--primary-gold);
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 1024px) {
    .gallery-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 850px) {
    .gallery-hero {
        height: 45vh;
        min-height: 350px;
    }

    .gallery-hero .hero-content h1 {
        font-size: 2rem;
    }

    .gallery-hero .hero-content p {
        font-size: 1rem;
    }

    .gallery-filters {
        border-radius: var(--border-radius-md);
        margin-top: -20px;
        padding: 0.5rem 1rem;
    }

    .gallery-filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .modal-nav-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .gallery-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .gallery-info h3 {
        font-size: 1rem;
    }

    .gallery-info p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .gallery-hero .hero-content h1 {
        font-size: 1.5rem;
    }

    .gallery-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .gallery-filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .modal-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* ==================== PÁGINA DE OFERTAS ==================== */
.offers-hero {
    height: 55vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../images/img3.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
}

.offers-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.offers-hero .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contador de Ofertas */
.offers-counter {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin: -60px auto 2rem auto;
    max-width: 1000px;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.counter-item {
    text-align: center;
}

.counter-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
}

.counter-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Filtros de Ofertas */
.offers-filters {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 0.8rem 1.5rem;
    margin: 0 auto 2rem auto;
    max-width: 900px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.offer-filter-btn {
    padding: 0.7rem 1.8rem;
    border-radius: var(--border-radius-xl);
    border: none;
    background: var(--light-gray);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.offer-filter-btn.active,
.offer-filter-btn:hover {
    background: var(--primary-gold);
    color: white;
}

/* Grid de Ofertas */
.offers-section {
    padding-top: 1rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.offer-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gold);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: var(--border-radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.offer-discount {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e74c3c;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: var(--border-radius-xl);
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 1;
}

.offer-content {
    padding: 1.5rem;
}

.offer-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
}

.offer-description {
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.offer-price-container {
    margin: 1rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.offer-original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
}

.offer-special-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.offer-validity {
    font-size: 0.75rem;
    color: var(--text-light);
}

.offer-validity i {
    margin-right: 0.3rem;
}

.btn-view-offer {
    background: transparent;
    border: 1.5px solid var(--primary-gold);
    padding: 0.5rem 1.2rem;
    border-radius: var(--border-radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-view-offer:hover {
    background: var(--primary-gold);
    color: white;
}

/* Newsletter Ofertas */
.newsletter-offer {
    background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg-light));
    border-radius: var(--border-radius-lg);
    margin: 2rem auto;
    padding: 3rem;
}

.newsletter-offer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.newsletter-offer-text {
    flex: 1;
    color: white;
}

.newsletter-offer-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.newsletter-offer-text h2 i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.newsletter-offer-text p {
    opacity: 0.9;
}

.newsletter-offer-form {
    display: flex;
    gap: 0.5rem;
    min-width: 350px;
}

.newsletter-offer-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: var(--border-radius-xl);
    font-size: 0.9rem;
}

.newsletter-offer-form button {
    background: var(--primary-gold);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius-xl);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-offer-form button:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
}

/* Depoimentos de Ofertas */
.offer-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.offer-testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-normal);
}

.offer-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--primary-gold-light);
}

.offer-testimonial-card p {
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-right: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-full);
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Vantagens */
.advantages-section {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gold-light);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.advantage-icon i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.advantage-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.advantage-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Modal de Ofertas */
.offer-modal-content {
    max-width: 550px;
    padding: 0;
    position: relative;
}

.offer-modal-header {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    padding: 2rem;
    text-align: center;
    position: relative;
}

.offer-modal-header .offer-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.offer-modal-header h2 {
    color: white;
    margin-top: 1rem;
}

.offer-modal-body {
    padding: 2rem;
}

.offer-modal-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.offer-modal-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.offer-modal-price {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    margin-bottom: 1rem;
}

.offer-modal-price .original-price {
    text-decoration: line-through;
    color: var(--text-light);
    display: block;
    font-size: 0.9rem;
}

.offer-modal-price .offer-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.offer-modal-validity {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.offer-modal-validity i {
    margin-right: 0.3rem;
}

.btn-reserve-offer {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .offers-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .offers-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 850px) {
    .offers-hero {
        height: 45vh;
        min-height: 350px;
    }

    .offers-hero .hero-content h1 {
        font-size: 2rem;
    }

    .offers-hero .hero-content p {
        font-size: 1rem;
    }

    .offers-counter {
        margin-top: -40px;
        padding: 1.5rem;
    }

    .counter-number {
        font-size: 2rem;
    }

    .offers-filters {
        border-radius: var(--border-radius-md);
        padding: 0.5rem 1rem;
    }

    .offer-filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-offer-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-offer-form {
        min-width: auto;
        width: 100%;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .offer-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-view-offer {
        text-align: center;
    }

    .offer-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-offer-text h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .offers-hero .hero-content h1 {
        font-size: 1.6rem;
    }

    .counter-item {
        flex: 1;
    }

    .counter-number {
        font-size: 1.6rem;
    }

    .counter-label {
        font-size: 0.7rem;
    }

    .offers-filters {
        flex-wrap: wrap;
    }

    .offer-special-price {
        font-size: 1.3rem;
    }

    .newsletter-offer-form {
        flex-direction: column;
    }

    .newsletter-offer-form button {
        width: 100%;
    }
}

/* ==================== PÁGINA DE CONTATO ==================== */
.contact-hero {
    height: 55vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../images/img1.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
}

.contact-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Cards de Informações */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin: -60px auto 2rem auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gold-light);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.contact-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.contact-info-card p {
    color: var(--text-medium);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

/* Seção de Contato Formulário e Mapa */
.contact-form-section {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    margin: 2rem auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* Formulário */
.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.form-header p {
    color: var(--text-medium);
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1.2rem;
    width: 100%;
}

.form-group {
    flex: 1;
    position: relative;
    margin-bottom: 0.5rem;
}

.form-group.full-width {
    width: 100%;
    flex: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.5rem;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    background: var(--light-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(198, 164, 59, 0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 2.7rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

textarea~.form-icon {
    top: 2.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: normal;
    margin-top: 0.5rem;
}

.checkbox-label input {
    width: auto;
    padding: 0;
    margin: 0;
}

.checkbox-label .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--medium-gray);
    border-radius: 4px;
    display: inline-block;
    position: relative;
}

.checkbox-label input:checked+.checkmark {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.btn-submit i {
    margin-right: 0.5rem;
}

/* Mapa */
.contact-map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-container {
    height: 300px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-info {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.map-info h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.map-info h4 i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.map-info p {
    color: var(--text-medium);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.btn-get-directions {
    background: var(--light-gray);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 0.5rem;
    width: 100%;
}

.btn-get-directions:hover {
    background: var(--primary-gold);
    color: white;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    background: white;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
}

.faq-question h3 i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    background: var(--light-gray);
}

.faq-answer p {
    padding: 0 0 1.2rem 0;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Social Section */
.social-section {
    background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg-light));
    border-radius: var(--border-radius-lg);
    margin: 2rem auto;
    color: white;
}

.social-container {
    text-align: center;
    padding: 1rem;
}

.social-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.social-content h2 i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.social-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--primary-gold);
}

.social-link i {
    font-size: 1.3rem;
}

.social-link.instagram:hover {
    background: #e4405f;
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.youtube:hover {
    background: #ff0000;
}

.social-link.whatsapp:hover {
    background: #25d366;
}

/* Modal de Sucesso */
.success-modal {
    text-align: center;
    padding: 2.5rem;
}

.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.success-modal h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-modal p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.success-modal .small-text {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .contact-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        margin-top: -40px;
    }
}

@media (max-width: 850px) {
    .contact-hero {
        height: 45vh;
        min-height: 350px;
    }

    .contact-hero .hero-content h1 {
        font-size: 2rem;
    }

    .contact-hero .hero-content p {
        font-size: 1rem;
    }

    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -30px;
        padding: 0 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 250px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
        margin-top: -20px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .faq-question h3 {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .social-content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .contact-hero .hero-content h1 {
        font-size: 1.6rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
    }

    .contact-icon i {
        font-size: 1.4rem;
    }

    .map-container {
        height: 250px;
    }

    .faq-question h3 {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
}

/* ==================== PÁGINA DE RESERVA ==================== */
.booking-hero {
    height: 55vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('https://images.pexels.com/photos/271618/pexels-photo-271618.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
}

.booking-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.booking-hero .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Container Principal */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Formulário de Reserva */
.booking-form-wrapper {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

/* Steps */
.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--medium-gray);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--medium-gray);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.step.active .step-number {
    background: var(--primary-gold);
    color: white;
}

.step.completed .step-number {
    background: #27ae60;
    color: white;
}

.step-label {
    font-size: 0.8rem;
    color: var(--text-medium);
}

.step.active .step-label {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeUp 0.4s ease;
}

.form-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

/* Navegação do Formulário */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
}

.btn-next,
.btn-prev,
.btn-submit-booking {
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.btn-next {
    background: var(--primary-gold);
    color: white;
}

.btn-next:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
}

.btn-prev {
    background: var(--light-gray);
    color: var(--dark-text);
}

.btn-prev:hover {
    background: var(--medium-gray);
}

.btn-submit-booking {
    background: #27ae60;
    color: white;
    width: 100%;
}

.btn-submit-booking:hover {
    background: #219a52;
    transform: translateY(-2px);
}

/* Resumo da Reserva */
.booking-summary {
    background: var(--light-gray);
    padding: 1.2rem;
    border-radius: var(--border-radius-md);
    margin-top: 1.5rem;
}

.booking-summary h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--dark-text);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.summary-item.total {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--medium-gray);
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 1rem;
}

/* Métodos de Pagamento */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    position: relative;
}

.payment-method input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-method label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.payment-method input:checked+label {
    border-color: var(--primary-gold);
    background: var(--primary-gold-light);
}

.payment-method label i {
    font-size: 1.2rem;
}

.payment-fields {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius-md);
}

.pix-info,
.boleto-info,
.transfer-info {
    text-align: center;
    padding: 1rem;
}

.pix-info i,
.boleto-info i,
.transfer-info i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Cards de Informações */
.booking-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-info-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.booking-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.booking-info-card h3 i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.booking-info-card ul {
    list-style: none;
    padding: 0;
}

.booking-info-card ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.booking-info-card ul li i {
    color: var(--primary-gold);
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.contact-phone i {
    color: var(--primary-gold);
}

.btn-chat {
    width: 100%;
    padding: 0.8rem;
    background: #25d366;
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 1rem;
}

.btn-chat:hover {
    background: #20b859;
    transform: translateY(-2px);
}

/* Políticas */
.policies-section {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
}

.policies-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.policy-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-fast);
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.policy-card i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.policy-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.policy-card p {
    font-size: 0.85rem;
    color: var(--text-medium);
}

/* Modal de Confirmação */
.confirmation-modal {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
}

.reservation-details {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    margin: 1rem 0;
    text-align: left;
}

.reservation-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-hero .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 850px) {
    .booking-hero {
        height: 45vh;
        min-height: 350px;
    }

    .booking-hero .hero-content h1 {
        font-size: 2rem;
    }

    .booking-hero .hero-content p {
        font-size: 1rem;
    }

    .booking-form-wrapper {
        padding: 1.5rem;
    }

    .booking-steps {
        margin-bottom: 1.5rem;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .form-step h3 {
        font-size: 1.2rem;
    }

    .form-navigation {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-next,
    .btn-prev {
        width: 100%;
        text-align: center;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .policies-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .booking-hero .hero-content h1 {
        font-size: 1.6rem;
    }

    .booking-steps {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .step {
        flex: auto;
        min-width: 70px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .step-label {
        font-size: 0.6rem;
    }

    .booking-summary .summary-item {
        font-size: 0.8rem;
    }
}