* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #FDFBF7;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR FIXA NO TOPO */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #361A0C;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    border-bottom: 2px solid #C89D42;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #C89D42;
}

.brand-title {
    color: #C89D42;
    font-size: 1.15rem;
    font-weight: bold;
    display: block;
}

.brand-subtitle {
    color: #E8DCCB;
    font-size: 0.7rem;
    display: block;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #C89D42;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-btn {
    background-color: #C89D42;
    color: #361A0C;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-count {
    background-color: #8B2613;
    color: #fff;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 0.75rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #C89D42;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

/* HERO COM ESPAÇAMENTO PARA NÃO FICAR ATRÁS DA NAVBAR */
.hero {
    background: linear-gradient(135deg, #361A0C 0%, #4A2511 50%, #291207 100%);
    color: white;
    text-align: center;
    padding: 110px 20px 60px; /* Topo compensado */
    border-bottom: 3px solid #C89D42;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 2.8rem;
    color: #C89D42;
    margin-bottom: 10px;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.5);
}

.hero .slogan {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #F4ECE1;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-badges span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(200, 157, 66, 0.5);
}

.btn-primary {
    background-color: #C89D42;
    color: #361A0C;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    display: inline-block;
}

/* INFO BAR */
.info-bar {
    background: #fff;
    border-bottom: 1px solid #e2d8cd;
    padding: 20px 0;
}

.bar-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-item i {
    font-size: 1.6rem;
    color: #4A2511;
}

/* SEÇÃO DE QUARTOS */
.section { padding: 45px 20px; }
.section-title { text-align: center; font-size: 1.8rem; color: #4A2511; }
.section-desc { text-align: center; color: #666; margin-bottom: 25px; }

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.room-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(74, 37, 17, 0.08);
    display: flex;
    flex-direction: column;
    border: 1.5px solid #C89D42;
}

.room-img-container { position: relative; height: 180px; }
.room-img { width: 100%; height: 100%; object-fit: cover; }

.room-tag {
    position: absolute; top: 10px; left: 10px;
    background: #4A2511; color: #fff;
    padding: 4px 8px; font-size: 0.75rem; border-radius: 4px;
}

.badge-gold { background: #C89D42; color: #361A0C; font-weight: bold; }

.room-details {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.room-details h3 { font-size: 1.15rem; color: #4A2511; margin-bottom: 10px; }

.room-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #555;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-features i {
    width: 20px;
    text-align: center;
    color: #C89D42;
    font-size: 0.95rem;
}

.room-images-thumb { display: flex; gap: 6px; margin-bottom: 12px; }
.room-images-thumb img { 
    width: 45px; 
    height: 45px; 
    object-fit: cover; 
    border-radius: 4px; 
    cursor: pointer; 
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.room-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 12px;
    margin-top: 10px;
}

.price .amount { font-size: 1.4rem; font-weight: bold; color: #4A2511; }
.price .per { font-size: 0.75rem; color: #777; }

.btn-add {
    background-color: #4A2511; color: #fff;
    border: none; padding: 8px 12px; border-radius: 6px; cursor: pointer;
}

.btn-add:hover { background-color: #C89D42; color: #361A0C; }


/* LIGHTBOX */
.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); display: none; justify-content: center; align-items: center; z-index: 2000;
}
.lightbox-content { max-width: 92%; max-height: 85%; border-radius: 8px; border: 3px solid #fff; }
.lightbox-close { position: absolute; top: 20px; right: 25px; color: #fff; font-size: 2.2rem; cursor: pointer; }

/* RESTAURANTE */
.restaurant-section { 
    background-color: #F5EFE6; 
    padding: 45px 20px; 
    text-align: center; /* Centraliza o título e textos gerais */
}

.grid-2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 25px; 
    align-items: center; 
}

.meal-cards { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    margin: 15px 0; 
}

.meal-card {
    background: #fff; 
    padding: 12px 16px; 
    border-radius: 8px;
    display: flex; 
    align-items: center; 
    justify-content: center; /* Centraliza o ícone e o texto dentro de cada cartão */
    gap: 12px;
    text-align: center;
}

.meal-card i { 
    font-size: 1.3rem; 
    color: #C89D42; 
}

.pay-icons { 
    display: flex; 
    justify-content: center; /* Centraliza os ícones de pagamento */
    gap: 12px; 
    flex-wrap: wrap; 
    font-weight: bold; 
    color: #4A2511; 
    margin-top: 15px; 
}


/* Ajuste para centralizar o restaurante após remover a imagem */
.restaurant-section .grid-2 {
    grid-template-columns: 1fr !important;
    max-width: 800px;
    margin: 0 auto;
}

.restaurant-info {
    text-align: center;
}

.meal-cards {
    max-width: 600px;
    margin: 20px auto;
}

.pay-icons {
    justify-content: center;
}

/* FAQ */
.accordion { max-width: 750px; margin: 0 auto; }
.acc-item { background: #fff; margin-bottom: 8px; border-radius: 6px; border: 1px solid #e0d5c8; }
.acc-header {
    width: 100%; padding: 12px 16px; background: none; border: none;
    text-align: left; font-weight: bold; color: #4A2511;
    display: flex; justify-content: space-between; cursor: pointer;
}
.acc-body { padding: 0 16px; max-height: 0; overflow: hidden; transition: 0.3s; background: #fafafa; }
.acc-item.active .acc-body { padding: 12px 16px; max-height: 150px; }

/* DRAWER LATERAL DO CARRINHO */
.cart-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); display: none; z-index: 1001;
}
.cart-drawer {
    position: fixed; top: 0; right: -360px; width: 340px; height: 100%;
    background: #fff; z-index: 1002; transition: right 0.3s ease;
    display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.drawer-header { background: #361A0C; color: #fff; padding: 15px; display: flex; justify-content: space-between; }
.close-btn { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.drawer-body { padding: 15px; flex-grow: 1; overflow-y: auto; }
.cart-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eee; }
.drawer-footer { padding: 15px; border-top: 1px solid #eee; background: #f8f9fa; }
.total-row { display: flex; justify-content: space-between; font-weight: bold; margin-bottom: 10px; }
.btn-whatsapp {
    width: 100%; background: #25D366; color: #fff; border: none;
    padding: 10px; border-radius: 6px; font-weight: bold; cursor: pointer;
}

/* FOOTER */
.footer { background: #361A0C; color: #fff; padding: 30px 20px 15px; margin-top: 30px; border-top: 2px solid #C89D42; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; font-size: 0.8rem; }

/* OCULTAR BANNER DO NETLIFY */
[data-netlify-deploy-id], #netlify-modal-backdrop, iframe[src*="netlify"], div[class*="netlify"] {
    display: none !important;
}

/* REGRAS EXCLUSIVAS PARA CELULAR (MENU HAMBÚRGUER) */
@media (max-width: 768px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 68px;
        right: -100%;
        width: 220px;
        height: calc(100vh - 68px);
        background-color: #361A0C;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -4px 4px 10px rgba(0,0,0,0.3);
        border-left: 2px solid #C89D42;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    /* Ajuste para manter imagem e texto lado a lado no celular */
    .grid-2 {
        grid-template-columns: 1.2fr 0.8fr !important;
        gap: 10px !important;
        align-items: center !important;
    }

    .restaurant-section {
        padding: 30px 10px !important;
    }

    .meal-card {
        padding: 8px !important;
        gap: 8px !important;
    }

    .meal-card h4 {
        font-size: 0.85rem !important;
    }

    .meal-card p {
        font-size: 0.75rem !important;
    }

    .pay-icons {
        font-size: 0.75rem !important;
        gap: 6px !important;
    }

    
    .rooms-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .room-card {
    width: 100% !important;
    border: 1.5px solid #C89D42 !important;
    box-shadow: 0 4px 12px rgba(74, 37, 17, 0.08) !important;
}

    .room-img-container {
        height: 180px !important;
    }
/* MOLDURA DO GOOGLE MAPS */
iframe[src*="google.com/maps"] {
    border: 2px solid #C89D42 !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(74, 37, 17, 0.1);
}
}