/* style.css (Versão Profissional com Layout Estratégico) */

/* --- VARIÁVEIS E ESTILOS GERAIS --- */
:root {
    --primary-color: #1a472a;
    --secondary-color: #d4af37;
    --light-gray-color: #f8f9fa;
    --dark-gray-color: #343a40;
    --text-color: #555;
    --white-color: #ffffff;
    --font-primary: 'Lato', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); line-height: 1.8; color: var(--text-color); background-color: var(--white-color); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
h1, h2, h3 { font-family: var(--font-secondary); font-weight: 700; color: var(--primary-color); line-height: 1.3; }
h1 { margin-bottom: 1.5rem; font-size: 3rem; }
h2 { margin-bottom: 3rem; font-size: 2.5rem; text-align: center; } /* Títulos de seção centralizados por padrão */
h3 { margin-bottom: 1rem; font-size: 1.5rem; }
p { margin-bottom: 1.5rem; }
a { text-decoration: none; color: var(--primary-color); transition: color 0.3s ease; }
a:hover { color: var(--secondary-color); }
img { max-width: 100%; height: auto; display: block; }

/* --- CABEÇALHO E NAVEGAÇÃO (Sem alterações) --- */
.main-header { background-color: var(--white-color); padding: 1rem 0; position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); transition: top 0.3s; }
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; }
.main-nav ul { list-style: none; display: flex; gap: 2.5rem; }
.main-nav a { font-family: var(--font-secondary); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; padding-bottom: 5px; border-bottom: 2px solid transparent; transition: all 0.3s ease; }
.main-nav a.active, .main-nav a:hover { color: var(--secondary-color); border-bottom-color: var(--secondary-color); }
.hamburger-menu { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 10; }
.hamburger-menu span { width: 30px; height: 3px; background-color: var(--primary-color); border-radius: 5px; transition: all 0.3s linear; position: relative; transform-origin: 1px; }
.hamburger-menu.active span:nth-child(1) { transform: rotate(45deg); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg); }

/* --- ESPAÇAMENTO GLOBAL E BOTÕES --- */
main { padding-top: 82px; }
section { padding: 6rem 0; overflow: hidden; }
.page-title-section { padding: 5rem 0; background-color: var(--light-gray-color); }
.page-title-section h1 { font-size: 3rem; }
.btn { display: inline-block; background: var(--secondary-color); color: var(--white-color); padding: 16px 36px; border-radius: 5px; font-weight: 700; text-transform: uppercase; transition: all 0.3s ease; }
.btn:hover { background-color: #c5a032; color: var(--white-color); transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.link-styled { font-weight: 700; color: var(--primary-color); transition: all 0.3s; }
.link-styled:hover { color: var(--secondary-color); padding-left: 5px; }

/* --- SEÇÕES DA PÁGINA INICIAL --- */
/* 1. HERO */
.hero { padding: 0; background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg') no-repeat center center/cover; min-height: 90vh; display: flex; justify-content: center; align-items: center; text-align: center; color: var(--white-color); }
.hero-content { padding: 2rem; }
.hero-content h1 { font-size: 3.8rem; color: var(--white-color); }
.hero-content p { font-size: 1.5rem; max-width: 60ch; margin: 0 auto 2.5rem auto; }

/* 2. INTRO VISUAL */
.intro-visual { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 5rem; }
.intro-visual-text h2 { text-align: left; }
.intro-visual-image img { border-radius: 10px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }

/* 3. FEATURES */
.features { background-color: var(--light-gray-color); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; text-align: center; }
.feature-item { padding: 1rem; }
.feature-item .icon-svg { height: 60px; margin: 0 auto 1.5rem; } /* Simplificado */

/* 4. FEATURED ROOMS */
.rooms-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.room-preview-card { background: var(--white-color); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; }
.room-preview-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.room-preview-content { padding: 2rem; }
.room-preview-content h3 { margin-bottom: 0.5rem; }

/* 5. TESTIMONIALS */
.testimonials { background-color: var(--light-gray-color); }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.testimonial-card { background: var(--white-color); padding: 2.5rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.testimonial-card blockquote { font-style: italic; border-left: 4px solid var(--secondary-color); padding-left: 1.5rem; margin-bottom: 1.5rem; color: #666; }
.testimonial-card cite { font-weight: 700; color: var(--primary-color); font-style: normal; }

/* 6. FINAL CTA */
.final-cta { background-color: var(--primary-color); color: var(--white-color); text-align: center; }
.final-cta h2 { color: var(--white-color); }
.final-cta p { max-width: 60ch; margin: -1.5rem auto 2.5rem auto; color: #e0e0e0; }

/* --- OUTRAS PÁGINAS (ESTILOS JÁ EXISTENTES E CONSISTENTES) --- */
/* Sobre */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-content h2, .about-content p { text-align: left; }
.about-image img { border-radius: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; background-color: var(--light-gray-color); }
.mission-vision h3 { text-align: center; }
/* Quartos */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 3rem; }
.room-card { background-color: #fff; border: 1px solid #eee; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.room-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.room-card-content { padding: 2.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.room-card-content .btn { margin-top: auto; text-align: center; }
.room-card ul { list-style: '✓ '; padding-left: 1.5rem; margin-bottom: 2rem; }
.room-card li { padding-bottom: 0.75rem; }
/* Galeria */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.gallery-item img { border-radius: 8px; transition: transform 0.3s, opacity 0.3s; width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.gallery-item:hover img { transform: scale(1.05); opacity: 0.9; }
/* Contato */
.contact-section { display: grid; grid-template-columns: 1.5fr 1fr; gap: 5rem; }
.contact-section h2 { text-align: left; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 700; color: #555; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; border: 1px solid #ccc; border-radius: 5px; font-family: var(--font-primary); font-size: 1rem; transition: border-color 0.3s, box-shadow 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--secondary-color); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2); }
.map-placeholder iframe { border-radius: 8px; height: 300px; width: 100%; }

/* --- RODAPÉ (Sem alterações) --- */
.main-footer { background-color: var(--dark-gray-color); color: #ccc; padding-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 5rem; }
.footer-grid h3 { color: var(--secondary-color); margin-bottom: 1.5rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #f1f1f1; transition: color .2s; }
.footer-links a:hover { color: var(--secondary-color); padding-left: 5px; }
.footer-social a { margin-right: 1rem; opacity: 0.8; transition: opacity .2s; }
.footer-social a:hover { opacity: 1; }
.footer-social img { display: inline-block; width: 32px; height: 32px; }
.footer-bottom { border-top: 1px solid #444; text-align: center; padding: 2rem 0; color: #999; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    h2 { font-size: 2.2rem; }
    section { padding: 4rem 0; }
    .intro-visual, .rooms-preview-grid, .testimonials-grid, .contact-section, .about-content { grid-template-columns: 1fr; }
    .intro-visual-text h2 { text-align: center; margin-top: 2rem; }
    .rooms-preview-grid, .testimonials-grid { gap: 2rem; }
}
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-content h1 { font-size: 2.8rem; }
    .page-title-section h1 { font-size: 2.5rem; }
    .hamburger-menu { display: flex; }
    .main-nav ul { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(5px); position: fixed; top: 82px; right: -100%; width: 100%; height: calc(100vh - 82px); transition: right 0.3s ease-in-out; padding: 2rem 0; }
    .main-nav ul.active { right: 0; }
    .mission-vision, .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { text-align: center; }
    .footer-social { justify-content: center; }
}