:root {
    /* Cores da Identidade Visual */
    --primary: #354632;
    /* Verde Bosque */
    --accent: #D9BB8B;
    /* Dourado Terra */
    --bg-light: #FAF6EE;
    /* Bege Linho */
    --text-dark: #1A1A1A;
    --text-light: #FAF6EE;
    --white: #FFFFFF;

    /* Tipografia */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Espaçamento */
    --section-padding: 100px 20px;
    --container-width: 1200px;

    /* Sombras e Bordas */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-title);
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 100;
    transition: background 0.3s ease;
}

header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.header-cta .btn {
    background: var(--accent);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.header-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../assets/hero_alto_do_bosque.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero .eyebrow {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    color: var(--accent);
    font-weight: 600;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-hero {
    background: var(--accent);
    color: var(--primary);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Storytelling */
.storytelling {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: #555;
}

.story-image {
    position: relative;
}

.story-badge {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-80%);
    width: 85%;
    max-width: 450px;
    background: url('../assets/fundo-quadro-verde.svg') no-repeat center center;
    background-size: 100% 130%;
    color: var(--white);
    padding: 40px 110px;
    padding: 40px 80px;
    font-weight: 700;
    font-size: 1.05rem;
    z-index: 2;
    text-align: center;
}

.story-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-premium);
    display: block;
}

.story-form-compact {
    margin-top: 30px;
}

.compact-input-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.compact-input-row input {
    flex: 1;
    min-width: 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.compact-input-row input:focus {
    outline: none;
    border-color: var(--accent);
}

/* Diferenciais */
.diferenciais {
    padding: var(--section-padding);
    background: linear-gradient(rgba(53, 70, 50, 0.92), rgba(53, 70, 50, 0.92)), 
                url('https://images.unsplash.com/photo-1511497584788-876760111969?auto=format&fit=crop&q=80&w=2560') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--text-light);
}

.diferenciais h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.diff-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius);
    border-top: 4px solid var(--accent);
    transition: transform 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.diff-card h3 {
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 1.4rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--text-light);
    padding: 80px 0 40px;
    text-align: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 40px;
}

.footer-info {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Localização */
.localizacao {
    padding: var(--section-padding);
}

/* Lazer */
.lazer {
    padding: var(--section-padding);
    background: var(--bg-light);
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.lazer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.lazer-item {
    background: var(--white);
    padding: 40px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.lazer-item:hover {
    transform: translateY(-5px);
}

.lazer-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lazer-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
    stroke-width: 1.5;
}

.lazer-featured-image img {
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-premium);
}

/* Projeto & Stats */
.projeto {
    padding: var(--section-padding);
    background: var(--white);
}

.stats-card {
    background: var(--primary);
    color: var(--accent);
    padding: 60px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: var(--font-title);
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Valorização */
.valorizacao {
    padding: var(--section-padding);
    background: #f0f0f0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.val-card {
    padding: 50px;
    background: var(--white);
    border-radius: var(--radius);
}

.val-card.trust {
    background: var(--primary);
    color: var(--text-light);
}

.val-card.trust h2 {
    color: var(--accent);
}

/* Contato & Form */
.contato {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.price-highlight {
    margin-top: 40px;
    padding: 30px;
    background: var(--white);
    border-left: 5px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.price-highlight .price {
    font-family: var(--font-title);
    font-size: 3rem;
    color: var(--primary);
    font-weight: 700;
}

.price-highlight .price span {
    font-size: 1.2rem;
    font-weight: 400;
}

.form-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-premium);
}

.form-box h3 {
    margin-bottom: 30px;
    color: var(--primary);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--accent);
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

/* CTA Final */
.cta-final {
    padding: 100px 20px;
    background: linear-gradient(rgba(53, 70, 50, 0.9), rgba(53, 70, 50, 0.9)), 
                url('../assets/hero_alto_do_bosque.png') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--text-light);
    text-align: center;
}

.cta-final h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Responsividade Extra */
@media (max-width: 992px) {

    .form-wrapper,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-final h2 {
        font-size: 2.2rem;
    }
}

.impact-text {
    font-weight: 100;
    font-size: 18px;
}

/* Evolução da Obra */
.evolucao {
    padding: var(--section-padding);
    background-color: var(--primary);
    color: var(--text-light);
}

.evolucao h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: var(--font-title);
    text-align: center;
}

.progress-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    height: 24px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--accent);
    border-radius: 20px;
    transition: width 0.5s ease;
}

.progress-text {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
}

.progress-text.low-progress {
    color: var(--text-light);
}

/* Slider de Lazer */
.lazer-slider-container {
    width: 70%;
    max-width: 800px;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-premium);
}

.lazer-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lazer-slide {
    min-width: 100%;
}

.lazer-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0px 15px;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
    pointer-events: auto;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgb(221, 221, 221);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 10px;
}