/* VARIÁVEIS DE DESIGN */
:root {
    --forest-green: #2D3A2D;
    --gold: #C5A059;
    --cream: #F9F7F2;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, em {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.tag { color: var(--gold); font-weight: 600; letter-spacing: 2px; font-size: 0.8rem; display: block; margin-bottom: 15px; }
.tag-light { color: rgba(255,255,255,0.7); font-weight: 600; letter-spacing: 2px; font-size: 0.8rem; display: block; margin-bottom: 15px; }

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 850px;
    background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 36, 26, 0.7);
}

.hero-content { position: relative; z-index: 2; width: 100%; }

.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.25rem; max-width: 800px; margin: 0 auto 40px; font-weight: 300; }

.hero-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.detail-item strong { display: block; color: var(--gold); font-size: 1.1rem; }

/* PRICING BOX */
.pricing-box {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    display: inline-block;
}

.lote { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.price { font-size: 4rem; margin: 10px 0; }
.availability { margin-bottom: 25px; font-size: 0.9rem; }
.availability strong { color: #f28b82; }

/* BOTÕES */
.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover { background-color: #b38f4d; transform: translateY(-2px); }

/* SEÇÕES GERAIS */
section { padding: 100px 0; text-align: center; }

.about h2 { font-size: 2.8rem; margin-bottom: 30px; }
.about p { max-width: 750px; margin: 0 auto 20px; font-size: 1.15rem; }

.experience { background-color: var(--forest-green); color: var(--white); }
.grid-experience { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.exp-card { padding: 40px; border: 1px solid rgba(255,255,255,0.1); text-align: left; }
.exp-card h3 { color: var(--gold); margin-bottom: 15px; }

/* DEPOIMENTOS */
.testimonial-slider { display: flex; gap: 20px; overflow-x: auto; padding: 40px 0; scrollbar-width: none; }
.video-card { min-width: 300px; height: 450px; background: #ddd; display: flex; align-items: center; justify-content: center; color: #666; font-weight: bold; border-radius: 4px; }

/* FAQ */
.faq-container { max-width: 800px; margin: 40px auto; text-align: left; }
.faq-item { margin-bottom: 30px; border-bottom: 1px solid #ddd; padding-bottom: 20px; }
.faq-item h3 { font-size: 1.2rem; margin-bottom: 10px; }

/* FOOTER */
.footer { background-color: var(--forest-green); color: var(--white); padding: 80px 0 40px; }
.instagram { margin: 30px 0; font-weight: 600; color: var(--gold); }
.legal { margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; opacity: 0.6; }

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-details { flex-direction: column; gap: 20px; }
    .price { font-size: 3rem; }
}