/* Variáveis para consistência (Vermelho Vinho da Logo) */
:root {
    --primary-color: #800000;
    --secondary-color: #b30000;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --gray-bg: #f4f4f4;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.flex-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-text span {
    color: #555;
    font-weight: 400;
}

.desktop-menu a {
    text-decoration: none;
    color: var(--text-dark);
    margin: 0 15px;
    font-weight: 600;
    transition: var(--transition);
}

.desktop-menu a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: white;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-nav:hover {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    width: 100%;
    height: 100%;
}

.hero-content {
    color: white;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #25d366; /* Verde WhatsApp para destaque */
    color: white;
    padding: 18px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 18px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color); /* Inverte as cores no hover */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.trust-indicators {
    margin-top: 20px; /* Mais espaço em relação aos botões principais */
    display: flex;
    gap: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.trust-indicators i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    z-index: 2000;
}

@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column; /* Empilha no mobile */
        text-align: center;
        gap: 20px;
        padding-bottom: 110px; /* Garante que os botões fixos não cubram nada */
    }

    .footer-left, .footer-right, .footer-center {
        width: 100%;
    }
}

/* Media Queries para Mobile Perfeito */
@media (max-width: 768px) {
    .desktop-menu, .btn-nav { display: none; }
    
    .hero-content h1 { font-size: 2.2rem; }
    
    .hero-actions { flex-direction: column; }
    
    .mobile-sticky-footer { display: flex; }

    .btn-call {
        flex: 1;
        background: white;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-weight: 700;
        border-top: 1px solid #ddd;
    }

    .btn-whatsapp {
        flex: 2;
        background: #25d366;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-weight: 700;
    }
}

/* Menu Sanduíche Estilo */
.mobile-menu-icon {
    display: none;
    font-size: 1.8rem; /* Um pouco maior para facilitar o toque */
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Escondido à direita */
    width: 80%;
    height: 100vh;
    background: white;
    z-index: 3000;
    transition: var(--transition);
    padding: 50px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-overlay nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu-overlay a {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .mobile-menu-icon { display: block; }
}



/* Seção de Diferenciais */
.features-section {
    padding: 80px 0;
    background-color: var(--gray-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    color: #666;
    max-width: 700px;
    margin: 15px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eee; /* Borda quase invisível inicial */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* O "Pulo do Gato": Animação de Elevação e Borda Fina */
.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color); /* Apenas a borda fica Vinho */
    box-shadow: 0 15px 35px rgba(128, 0, 0, 0.1); /* Sombra leve na cor do hotel */
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1); /* Ícone cresce levemente sem mudar de cor */
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Ajuste de Responsividade para evitar "card solto" */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 30px 20px; }
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .features-section { padding: 50px 0; }
    .section-header h2 { font-size: 1.8rem; }
}


.suites-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.suites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.suite-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.suite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.suite-image {
    position: relative;
    height: 300px;
}

.suite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suite-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.suite-info {
    padding: 30px;
}

.suite-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.suite-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.suite-icons span {
    font-size: 0.8rem;
    color: #777;
    background: #f8f8f8;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.suite-icons i {
    color: var(--primary-color);
}

.suite-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-suite {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-suite:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsividade Mobile */
@media (max-width: 600px) {
    .suites-grid {
        grid-template-columns: 1fr;
    }
    .suite-image {
        height: 200px;
    }
}

/* Seção de Depoimentos */
.social-proof {
    padding: 60px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--gray-bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color); /* Toque vinho para consistência */
}

.testimonial-card .stars {
    color: #f1c40f;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    margin-bottom: 15px;
}

.testimonial-card span {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.final-cta .container { display: flex; flex-direction: column; align-items: center; }

.final-cta h2 { font-size: 2.5rem; margin-bottom: 20px; }
.final-cta h2 span { color: var(--secondary-color); }
.final-cta p { font-size: 1.1rem; margin-bottom: 35px; opacity: 0.9; }

/* Animação Pulse para o botão de fechamento */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.contact-section {
    padding: 80px 0;
    background-color: var(--gray-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-map {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.main-footer {
    padding: 30px 0;
    background: #1a1a1a;
    color: white;
    border-top: 1px solid #333;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between; /* Esquerda e Direita */
    align-items: center;
}

.footer-left p, .footer-right p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza tudo no Desktop e Mobile */
    gap: 10px;
}

.footer-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.privacy-link {
    color: #999;
    font-size: 0.75rem;
    text-decoration: none; /* Removido o underline conforme pedido */
    transition: var(--transition);
}

.privacy-link:hover {
    color: var(--secondary-color);
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icon:hover {
    color: #E1306C; /* Cor padrão do Instagram */
    transform: translateY(-3px);
}

.footer-right a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}
.dev-credit {
    font-size: 0.75rem !important;
    opacity: 0.6 !important;
    margin-top: 5px;
}

.dev-credit a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

/* Responsividade Mobile para o Mapa */
@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-section { padding: 50px 0 100px 0; } /* Espaço extra para o botão fixo mobile */
}

/* Seção de Simulação de Reserva */
.booking-section { padding: 60px 0; background: #fff; }

.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gray-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label { font-size: 0.85rem; font-weight: 700; color: #555; }

.form-group input, .form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
}

.btn-booking-send {
    grid-column: 1 / -1; /* Botão ocupa a linha toda */
    background: #25d366;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-booking-send:hover { background: #1da851; transform: translateY(-2px); }

/* Estilo do Modal de Privacidade */
.modal-overlay {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 10000; /* Acima de tudo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 70vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary-color);
}

.modal-text h3 { margin-bottom: 20px; color: var(--primary-color); }
.modal-text p { margin-bottom: 15px; font-size: 0.9rem; color: #555; }
.modal-text ul { margin-left: 20px; margin-bottom: 15px; font-size: 0.9rem; color: #555; }

