/* ======================================================
RESET + BASE
====================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: #1b2a21;
    background: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}

/* ======================================================
HEADER
====================================================== */
.header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

.header-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 52px;
}

/* MENU DESKTOP */
.nav {
    display: flex;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav a {
    font-weight: 500;
    transition: color .3s;
}

.nav a:hover {
    color: #0b4d3b;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

/* ======================================================
HERO
====================================================== */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    background: url('/assets/img/slaide01.png') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    color: #fff;
}

.hero-content h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-hero {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 30px;
    background: #0b4d3b;
    color: #fff;
    font-weight: 600;
}

/* ======================================================
SEÇÕES GERAIS
====================================================== */
.section {
    padding: 100px 0;
    position: relative;
}

/* ======================================================
SOBRE
====================================================== */
.sobre-modern {
    background: #f8f9f8;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-img-box img {
    border-radius: 20px;
}

.sobre-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

/* ======================================================
SERVIÇOS
====================================================== */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ======================================================
SERVIÇOS OFERECIDOS
====================================================== */
.servicos-oferecidos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ======================================================
NOSSO ESPAÇO
====================================================== */
.nosso-espaco-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ======================================================
GALERIA PREVIEW
====================================================== */
.galeria-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ======================================================
PARALLAX
====================================================== */
.parallax-section {
    min-height: 60vh;
    background:
        linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
        url('/assets/img/estrutura-na-natureza.png') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax-content {
    color: #fff;
    max-width: 800px;
}

/* ======================================================
CONTATO
====================================================== */
.contato-wrapper {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
}

/* ======================================================
MODAL
====================================================== */
.modal-sucesso {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-sucesso.ativo {
    display: flex;
}

/* ======================================================
RESPONSIVO
====================================================== */
@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        padding: 20px;
    }

    .sobre-grid,
    .servicos-grid,
    .servicos-oferecidos-grid,
    .nosso-espaco-grid,
    .galeria-preview-grid,
    .contato-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .parallax-section {
        background-attachment: scroll;
    }
}
/* ======================================================
CONTATO – DESIGN PROFISSIONAL
====================================================== */

.contato-modern {
    background: #f8f9f8;
}

.titulo-contato {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 60px;
}

/* GRID */
.contato-wrapper {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 60px;
    align-items: flex-start;
}

/* FORM CARD */
.contato-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* INPUTS */
.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.input-row.full {
    grid-template-columns: 1fr;
}

.contato-form input,
.contato-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: .95rem;
}

.contato-form input:focus,
.contato-form select:focus {
    outline: none;
    border-color: #0b4d3b;
}

/* CAPTCHA */
.recaptcha-area {
    margin: 20px 0;
}

/* BOTÃO */
.btn-contato-submit {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    background: #0b4d3b;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease;
}

.btn-contato-submit:hover {
    background: #083a2d;
}

/* INFO LATERAL */
.contato-info {
    background: #0b4d3b;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
}

.contato-info p {
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.contato-titulo {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* WHATS */
.btn-whats {
    display: inline-block;
    margin-top: 20px;
    background: #25d366;
    padding: 14px 26px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 900px) {
    .contato-wrapper {
        grid-template-columns: 1fr;
    }

    .input-row {
        grid-template-columns: 1fr;
    }
}
