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

:root {
    --marrom-escuro: #4a3728;
    --marrom-medio: #6b4c3a;
    --creme: #f5f0e8;
    --creme-claro: #faf8f5;
    --dourado: #c9a66b;
    --rosa-suave: #ead1d8;
    --verde: #128c7e;
    --sombra: 0 16px 36px rgba(74, 55, 40, 0.12);
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: var(--creme-claro);
    color: var(--marrom-escuro);
    line-height: 1.6;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(135deg, var(--marrom-escuro), var(--marrom-medio));
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

.header-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--dourado);
}

.brand strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    color: var(--creme);
    font-size: 1.42rem;
    line-height: 1.1;
}

.brand span {
    display: block;
    color: var(--dourado);
    font-size: 0.72rem;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-nav a {
    color: var(--creme);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.94rem;
    border-bottom: 2px solid transparent;
    padding: 8px 0;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--dourado);
    border-color: var(--dourado);
}

.hero,
.page-hero {
    position: relative;
    min-height: 74vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--creme);
}

.page-hero {
    min-height: 360px;
    text-align: center;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img,
.hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 900ms ease, transform 5500ms ease;
}

.hero-media img.active,
.hero-media video.active {
    opacity: 1;
    transform: scale(1);
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(40, 24, 16, 0.72), rgba(40, 24, 16, 0.34));
}

.hero-content,
.page-hero-content {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.hero-content {
    max-width: 760px;
    margin-left: max(20px, calc((100% - 1120px) / 2));
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--dourado);
    font-weight: 700;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    font-size: 0.78rem;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.12;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.7rem);
    max-width: 760px;
}

.hero p,
.page-hero p {
    max-width: 720px;
    margin-top: 18px;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #25d366, var(--verde));
    color: white;
    box-shadow: 0 10px 24px rgba(18, 140, 126, 0.28);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--marrom-escuro);
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 20px;
}

.section.alt {
    max-width: none;
    background: var(--creme);
}

.section-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p {
    max-width: 560px;
    color: var(--marrom-medio);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.feature-card,
.info-card,
.contact-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--sombra);
    overflow: hidden;
}

.feature-card img,
.feature-card video {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #efe6db;
}

.feature-card-body,
.info-card,
.contact-card {
    padding: 22px;
}

.feature-card h3,
.info-card h3,
.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.feature-card p,
.info-card p,
.contact-card p {
    color: var(--marrom-medio);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
    gap: 42px;
    align-items: center;
}

.split img,
.split video {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--sombra);
}

.filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.search-input {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(74, 55, 40, 0.2);
    border-radius: 8px;
    padding: 0 16px;
    font: inherit;
    color: var(--marrom-escuro);
    background: white;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    border: 1px solid rgba(74, 55, 40, 0.22);
    background: white;
    color: var(--marrom-escuro);
    border-radius: 999px;
    min-height: 40px;
    padding: 8px 15px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.filter-btn.active {
    background: var(--marrom-escuro);
    color: var(--creme);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.gallery-card {
    background: white;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    box-shadow: var(--sombra);
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.gallery-card:hover {
    transform: translateY(-3px);
}

.gallery-card img,
.gallery-card video {
    width: 100%;
    height: 230px;
    object-fit: cover;
    background: #efe6db;
}

.gallery-card-body {
    display: block;
    padding: 16px;
}

.gallery-card-body p {
    color: var(--marrom-medio);
    margin-top: 6px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--rosa-suave);
    color: var(--marrom-escuro);
    font-size: 0.75rem;
    font-weight: 700;
}

.video-tag {
    background: #dbeeea;
    color: #0d665b;
}

.empty-state {
    display: none;
    padding: 28px;
    text-align: center;
    background: white;
    border-radius: 8px;
    color: var(--marrom-medio);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(25, 15, 10, 0.86);
}

.lightbox.open {
    display: flex;
}

.lightbox-panel {
    position: relative;
    width: min(980px, 100%);
    max-height: 92vh;
    background: var(--creme-claro);
    border-radius: 8px;
    overflow: hidden;
}

.lightbox-media img,
.lightbox-media video {
    width: 100%;
    max-height: 68vh;
    object-fit: contain;
    background: #1c130f;
}

.lightbox-info {
    padding: 18px 20px 22px;
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    font-size: 1.4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-list {
    display: grid;
    gap: 16px;
}

.contact-form {
    display: grid;
    gap: 14px;
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--sombra);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(74, 55, 40, 0.2);
    border-radius: 8px;
    padding: 13px 14px;
    font: inherit;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.privacy-note {
    padding: 12px 14px;
    border-left: 4px solid var(--dourado);
    background: var(--creme);
    border-radius: 8px;
    color: var(--marrom-medio);
    font-size: 0.92rem;
}

.privacy-note a,
.privacy-card a {
    color: var(--verde);
    font-weight: 700;
}

.privacy-content {
    max-width: 900px;
}

.privacy-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--sombra);
    padding: clamp(24px, 5vw, 42px);
}

.privacy-card h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.55rem;
}

.privacy-card p + p {
    margin-top: 12px;
}

.privacy-updated {
    margin-top: 28px;
    color: var(--marrom-medio);
    font-size: 0.92rem;
}

.site-footer {
    background: var(--marrom-escuro);
    color: var(--creme);
    padding: 42px 20px 28px;
}

.footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
}

.footer-grid h3 {
    color: var(--dourado);
    margin-bottom: 10px;
}

.footer-grid a {
    display: block;
    color: var(--creme);
    text-decoration: none;
    margin-top: 7px;
}

.footer-bottom {
    max-width: 1180px;
    margin: 28px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    color: rgba(245, 240, 232, 0.78);
}

@media (max-width: 820px) {
    .header-container,
    .site-nav,
    .section-heading,
    .actions {
        justify-content: center;
    }

    .header-container,
    .section-heading {
        flex-direction: column;
        text-align: center;
    }

    .site-nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero::after,
    .page-hero::after {
        background: rgba(40, 24, 16, 0.58);
    }

    .split,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card img,
    .gallery-card video,
    .feature-card img,
    .feature-card video {
        height: 210px;
    }
}
