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

:root {
    --blush: #f5e6df;
    --blush-md: #efd4c9;
    --blush-dk: #e8c0b0;
    --choco: #3d1f12;
    --choco-md: #5c3020;
    --choco-lt: #8b5a42;
    --rose: #c97b6e;
    --rose-lt: #d9968a;
    --cream: #fdf8f5;
    --muted: #8a6a60;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    background: var(--cream);
    color: var(--choco);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 60px;
    background: #fdf8f5;
    border-bottom: 1px solid rgba(61, 31, 18, 0.08);
    transition: box-shadow 0.3s;
    min-height: 80px;
}

@media (max-width: 900px) {
    nav {
        padding: 12px 20px;
        min-height: 70px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 10px 16px;
        min-height: 64px;
    }
}

nav.scrolled {
    box-shadow: 0 2px 24px rgba(61, 31, 18, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo svg {
    height: 60px;
    width: 60px;
    display: block;
    flex-shrink: 0;
}

.nav-logo img {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.nav-mobile-cta {
    color: var(--rose);
    margin-top: 12px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--choco-lt);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--rose);
}

.nav-cta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--rose);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 50px;
    transition:
        background 0.3s,
        transform 0.2s;
}

.nav-cta:hover {
    background: var(--rose-lt);
    transform: translateY(-1px);
}

/* HERO */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg,
            var(--cream) 0%,
            var(--blush) 50%,
            var(--blush-md) 100%);
    display: flex;
    align-items: center;
    padding: 20px 60px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(201, 123, 110, 0.12) 0%,
            transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(61, 31, 18, 0.06) 0%,
            transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s forwards;
}

.hero-eyebrow::before {
    content: "✦";
    font-size: 10px;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--choco);
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--rose);
}

.hero-sub {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--muted);
    max-width: 420px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--rose);
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 50px;
    transition:
        background 0.3s,
        transform 0.2s,
        box-shadow 0.3s;
}

.btn-primary:hover {
    background: var(--rose-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 123, 110, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--choco);
    border: 2px solid rgba(61, 31, 18, 0.2);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 50px;
    transition:
        border-color 0.3s,
        color 0.3s,
        transform 0.2s;
}

.btn-outline:hover {
    border-color: var(--choco);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeRight 0.9s 0.5s forwards;
}

.hero-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 24px;
    background: var(--blush-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 60px rgba(61, 31, 18, 0.18);
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.hero-badge {
    display: none;
}

.badge-icon {
    font-size: 32px;
}

.badge-text-num {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--choco);
    line-height: 1;
}

.badge-text-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 2px;
}

.hero-tag {
    position: absolute;
    top: 24px;
    right: -20px;
    background: var(--rose);
    color: var(--white);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 0 6px 20px rgba(201, 123, 110, 0.35);
    transform: rotate(3deg);
}

/* MARQUEE */
.marquee-wrap {
    padding: 16px 0;
    background: var(--choco);
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 22s linear infinite;
}

.marquee-item {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blush);
    padding: 0 28px;
}

.marquee-sep {
    color: var(--rose);
}

/* SECTION */
section {
    padding: 90px 60px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-eyebrow::before {
    content: "♥";
    font-size: 10px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--choco);
}

.section-title em {
    font-style: italic;
    color: var(--rose);
}

/* SOBRE */
.sobre {
    background: var(--blush);
}

.sobre-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: stretch;
}

.sobre-photo {
    position: relative;
}

.sobre-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.sobre-photo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 10/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(61, 31, 18, 0.15);
}

.sobre-photo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.sobre-float {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--white);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 28px rgba(61, 31, 18, 0.1);
    text-align: center;
}

.float-icon {
    font-size: 28px;
}

.float-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--choco-md);
    margin-top: 4px;
    letter-spacing: 0.04em;
}

.sobre-name {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-style: italic;
    color: var(--rose);
    margin-bottom: 4px;
    font-weight: 400;
}

.sobre-desc {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    color: var(--muted);
}

.sobre-desc strong {
    color: var(--choco);
    font-weight: 600;
}

.sobre-desc--tight {
    margin-top: 8px;
}

.sobre-divider {
    width: 48px;
    height: 3px;
    background: var(--rose);
    margin: 16px 0 0;
}

.sobre-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
}

.pill {
    background: var(--white);
    border: 1.5px solid var(--blush-dk);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    color: var(--choco-md);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* GALERIA */
.galeria {
    background: var(--cream);
}

.galeria-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 44px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.gal-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(61, 31, 18, 0.08);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    background: var(--blush-md);
}

.gal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(61, 31, 18, 0.16);
}

.gc-tall {
    grid-row: 1 / 3;
}

.gc-tall .gal-inner {
    height: 100%;
    min-height: 460px;
}

.gc-short .gal-inner {
    aspect-ratio: 1;
}

.gal-inner {
    position: relative;
    display: block;
}

.gal-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(61, 31, 18, 0.7) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gal-card:hover .gal-overlay {
    opacity: 1;
}

.gal-overlay-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.04em;
}

/* ESPECIALIDADES */
.especialidades {
    background: var(--blush);
}

.esp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.esp-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1.5px solid rgba(61, 31, 18, 0.07);
    transition:
        transform 0.3s,
        box-shadow 0.3s,
        border-color 0.3s;
}

.esp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(61, 31, 18, 0.1);
    border-color: rgba(201, 123, 110, 0.3);
}

.esp-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.esp-name {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--choco);
    margin-bottom: 10px;
}

.esp-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--muted);
}

/* PROCESSO */
.processo {
    background: var(--choco);
}

.processo .section-eyebrow {
    color: var(--blush-md);
}

.processo .section-title {
    color: var(--blush);
}

.processo .section-title em {
    color: var(--rose-lt);
}

.processo-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}

.processo-steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 14%;
    right: 14%;
    height: 2px;
    background: linear-gradient(to right, var(--rose), var(--blush-dk));
    opacity: 0.3;
}

.step {
    padding: 0 20px;
    text-align: center;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--rose);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(201, 123, 110, 0.4);
}

.step-title {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--blush);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(239, 212, 201, 0.6);
}

/* FAQ */
.faq {
    background: var(--cream);
}

.faq-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 780px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid rgba(61, 31, 18, 0.07);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-q-text {
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--choco);
    line-height: 1.4;
}

.faq-icon {
    font-size: 20px;
    color: var(--rose);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.3s;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding: 0 28px 22px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

/* DEPOIMENTOS */
.depoimentos {
    background: var(--blush);
}

.dep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.dep-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1.5px solid rgba(61, 31, 18, 0.07);
    position: relative;
}

.dep-quote {
    font-size: 64px;
    line-height: 1;
    color: var(--blush-md);
    font-family: "Playfair Display", serif;
    position: absolute;
    top: 12px;
    right: 20px;
}

.dep-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.star {
    color: #f4b942;
    font-size: 14px;
}

.dep-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 22px;
    font-style: italic;
}

.dep-text strong {
    color: var(--choco);
    font-style: normal;
    font-weight: 600;
}

.dep-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dep-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--blush-dk));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.dep-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--choco);
}

.dep-event {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

/* PEDIDO */
.pedido {
    background: linear-gradient(135deg, var(--blush) 0%, var(--blush-md) 100%);
    text-align: center;
}

.pedido-inner {
    max-width: 640px;
    margin: 0 auto;
}

.pedido-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.pedido-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--choco);
    margin-bottom: 16px;
}

.pedido-title em {
    font-style: italic;
    color: var(--rose);
}

.pedido-sub {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 40px;
}

.pedido-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: #25d366;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    transition:
        background 0.3s,
        transform 0.2s,
        box-shadow 0.3s;
}

.pedido-btn:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.35);
}

.pedido-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--muted);
}

/* INSTAGRAM */
.insta {
    background: var(--choco);
    padding: 70px 60px 90px;
    text-align: center;
}

.insta-title {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: var(--blush);
    margin-bottom: 6px;
}

.insta-handle {
    font-size: 13px;
    font-weight: 600;
    color: var(--rose-lt);
    letter-spacing: 0.12em;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 32px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.insta-cell {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    background: var(--choco-dk);
}

.insta-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.7;
    transition:
        opacity 0.3s,
        transform 0.3s;
}

.insta-cell:hover img {
    opacity: 1;
    transform: scale(1.06);
}

/* FOOTER */
footer {
    background: var(--choco);
    border-top: 3px solid rgba(201, 123, 110, 0.25);
    padding: 56px 60px 32px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo img {
    height: 72px;
    width: 72px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(239, 212, 201, 0.5);
    max-width: 240px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(239, 212, 201, 0.5);
    text-decoration: none;
    font-size: 15px;
    transition:
        border-color 0.3s,
        color 0.3s,
        background 0.3s;
}

.social-btn:hover {
    border-color: var(--rose);
    color: var(--rose);
    background: rgba(201, 123, 110, 0.1);
}

.footer-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blush-md);
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: transparent !important;
    padding: 0;
    border-radius: 0;
}

.footer-links a {
    font-size: 13px;
    color: rgba(239, 212, 201, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--blush);
}

.footer-bottom {
    max-width: 1100px;
    margin: 28px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 11px;
    color: rgba(239, 212, 201, 0.35);
}

.footer-heart {
    font-size: 11px;
    color: rgba(239, 212, 201, 0.35);
}

.footer-heart span {
    color: var(--rose);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s,
        transform 0.65s;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* UTILITIES */
.text-center {
    text-align: center;
}

.justify-center {
    justify-content: center;
}

/* MOBILE */
@media (max-width: 900px) {
    nav {
        padding: 14px 20px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    section {
        padding: 60px 24px;
    }

    .hero {
        padding: 90px 24px 50px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-visual {
        order: -1;
    }

    .sobre-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .galeria-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gc-tall {
        grid-row: auto;
    }

    .gc-tall .gal-inner {
        min-height: 220px;
    }

    .esp-grid {
        grid-template-columns: 1fr;
    }

    .processo-steps {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .processo-steps::before {
        display: none;
    }

    .dep-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .galeria-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .insta {
        padding: 56px 24px;
    }

    footer {
        padding: 48px 24px 28px;
    }

    .faq-list {
        max-width: 100%;
    }
}

/* HAMBURGUER MOBILE */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--choco-md);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 31, 18, 0.96);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.nav-mobile-overlay.open {
    display: flex;
}

.nav-mobile-overlay a {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    color: var(--blush);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-mobile-overlay a:hover {
    color: var(--rose);
}

.nav-mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--blush);
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-hamburger {
        display: flex;
    }
}

/* Footer nav sem herdar estilo do nav principal */
footer nav {
    position: static;
    background: transparent !important;
    border: none;
    padding: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    backdrop-filter: none;
}