:root {
    --gold: #C9A84C;
    --gold-dark: #A8872A;
    --dark: #0F0F0F;
    --dark-2: #1A1A1A;
    --dark-3: #2A2A2A;
    --white: #FFFFFF;
    --gray: #888;
    --light: #F8F5EF;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ─── HEADER ─────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 14px 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
}

.logo-sub {
    font-size: 9px;
    color: rgba(201,168,76,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.header-nav a:hover { color: var(--gold); }

.btn-wa-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.btn-wa-header:hover { background: var(--gold-dark); }

.btn-wa-header svg { width: 16px; height: 16px; fill: var(--dark); }

/* ─── HERO ───────────────────────────────────── */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.68)),
        url('assets/images/hero.jpg') center / cover no-repeat;
    background-color: var(--dark-2);
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}

.hero-content { color: var(--white); }

.hero-label {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(201,168,76,0.35);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.2vw, 46px);
    line-height: 1.22;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--white);
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* FORM CARD */
.form-card {
    background: var(--white);
    border-radius: 10px;
    padding: 42px 38px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.form-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-card-subtitle {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.5;
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #E0E0E0;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input::placeholder { color: #B0B0B0; }

.form-group input:focus { border-color: var(--gold); }

.btn-form {
    width: 100%;
    margin-top: 6px;
    padding: 16px;
    background: var(--gold);
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.3px;
}

.btn-form:hover { background: var(--gold-dark); }

.form-note {
    text-align: center;
    font-size: 11px;
    color: var(--gray);
    margin-top: 12px;
    line-height: 1.5;
}

/* ─── VIDEO ──────────────────────────────────── */
.section-video {
    background: var(--dark);
    padding: 110px 0;
    text-align: center;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-video h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.8vw, 38px);
    color: var(--white);
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto 52px;
    line-height: 1.75;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    max-width: 880px;
    margin: 0 auto 44px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.2);
}

.video-wrapper iframe,
.video-wrapper .video-placeholder-box {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

.video-placeholder-box {
    background: var(--dark-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(201,168,76,0.5);
    font-size: 15px;
}

.video-placeholder-box svg {
    width: 52px;
    height: 52px;
    opacity: 0.4;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 36px;
    border-radius: 5px;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ─── DIFERENCIAIS ───────────────────────────── */
.section-diferenciais {
    background: var(--light);
    padding: 100px 0;
}

.section-diferenciais h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.5vw, 34px);
    color: var(--dark);
    text-align: center;
    margin-bottom: 60px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.diferencial-item {
    background: var(--white);
    padding: 48px 36px;
    text-align: center;
    border-top: 3px solid transparent;
    transition: border-color 0.3s;
}

.diferencial-item:hover { border-color: var(--gold); }

.diferencial-icon {
    width: 68px;
    height: 68px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background: rgba(201,168,76,0.06);
}

.diferencial-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.diferencial-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

.diferencial-item p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

/* ─── GALERIA ────────────────────────────────── */
.section-galeria {
    background: var(--dark-2);
    padding: 110px 0;
}

.section-galeria .section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-galeria h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.8vw, 38px);
    color: var(--white);
    margin-bottom: 14px;
}

.section-galeria .section-subtitle {
    margin-bottom: 0;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}

.galeria-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--dark-3);
    border: 1px solid rgba(201,168,76,0.1);
    cursor: pointer;
}

.galeria-item.destaque {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover img { transform: scale(1.06); }

.galeria-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(201,168,76,0.3);
    font-size: 12px;
    letter-spacing: 1px;
    min-height: 200px;
}

.galeria-placeholder svg {
    width: 36px;
    height: 36px;
    opacity: 0.3;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.galeria-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: var(--white);
    padding: 28px 18px 14px;
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* ─── MAIS INFORMAÇÕES ───────────────────────── */
.section-info {
    background: var(--white);
    padding: 110px 0;
}

.section-info .section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.8vw, 38px);
    color: var(--dark);
    margin-bottom: 18px;
}

.section-info .intro-text {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.info-card {
    background: var(--light);
    border-radius: 8px;
    padding: 44px 40px;
    border-top: 4px solid var(--gold);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 28px;
}

.info-list { list-style: none; }

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.info-list li:last-child { border-bottom: none; }

.info-list li .check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.info-list li .check svg {
    width: 12px;
    height: 12px;
    stroke: var(--dark);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-list li strong { display: block; color: var(--dark); font-weight: 600; }

/* ─── LOCALIZAÇÃO ────────────────────────────── */
.section-localizacao {
    background: var(--dark);
    padding: 110px 0;
}

.section-localizacao .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-localizacao h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.8vw, 38px);
    color: var(--white);
    margin-bottom: 14px;
}

.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    height: 420px;
    border: 1px solid rgba(201,168,76,0.2);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) contrast(1.1);
}

.localizacao-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 20px;
}

.localizacao-info p {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 14px;
}

.distancia-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

.distancia-item:last-of-type { border-bottom: none; }

.distancia-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    min-width: 18px;
}

.endereco-box {
    margin-top: 24px;
    background: var(--dark-3);
    border-left: 3px solid var(--gold);
    padding: 16px 20px;
    border-radius: 0 6px 6px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ─── CTA FINAL ──────────────────────────────── */
.section-cta {
    background: var(--gold);
    padding: 90px 0;
    text-align: center;
}

.section-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 42px);
    color: var(--dark);
    margin-bottom: 16px;
}

.section-cta p {
    color: rgba(15,15,15,0.65);
    font-size: 17px;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    padding: 18px 52px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.2s;
}

.btn-dark:hover { background: var(--dark-3); }

.btn-dark svg { width: 20px; height: 20px; fill: #25D366; }

/* ─── FOOTER ─────────────────────────────────── */
.site-footer {
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 70px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 6px;
}

.footer-tagline {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    line-height: 1.8;
    margin-top: 12px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col a,
.footer-col p {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    line-height: 2;
    display: block;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255,255,255,0.28);
}

/* ─── FLOATING WA ────────────────────────────── */
.float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 998;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.float-wa:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.float-wa svg { width: 28px; height: 28px; fill: white; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 960px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero { padding: 110px 0 70px; }

    .form-card { max-width: 480px; }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .galeria-grid { grid-template-columns: repeat(2, 1fr); }

    .galeria-item.destaque {
        grid-column: span 2;
        aspect-ratio: 4 / 3;
    }

    .info-grid,
    .localizacao-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper { height: 300px; }

    .header-nav { display: none; }
}

@media (max-width: 600px) {
    .container { padding: 0 20px; }

    .galeria-grid { grid-template-columns: 1fr; }
    .galeria-item.destaque { grid-column: span 1; }

    .info-card { padding: 32px 24px; }

    .form-card { padding: 32px 24px; }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
