/* Mãe de Santo Gabriela
   Paleta da Sarita, composição editorial de terreiro */

:root {
    --neutral-1: #F6E6DA;
    --neutral-2: #EDCFBA;
    --neutral-3: #D7B89C;
    --neutral-4: #C39A77;
    --neutral-5: #B0845B;
    --neutral-6: #A16F4D;
    --neutral-7: #774633;
    --neutral-8: #43241C;

    --primary-color: #774633;
    --secondary-color: #C39A77;
    --accent-color: #B0845B;
    --dark-color: #43241C;
    --light-color: #FBFAF8;
    --gold-pale: #F6E6DA;
    --gold-soft: #EDCFBA;
    --gold: #C39A77;
    --gold-deep: #A16F4D;
    --honey: #B0845B;
    --text-color: #43241C;
    --text-muted: #774633;
    --border-radius: 999px;
    --grad-gold: linear-gradient(135deg, #C39A77 0%, #774633 100%);
    --grad-gold-hover: linear-gradient(135deg, #D7B89C 0%, #A16F4D 100%);
    --box-shadow: 0 18px 40px rgba(67, 36, 28, 0.14);
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    background-color: var(--light-color);
    overflow-x: clip;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.18rem;
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: clip;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6, .font-alt {
    font-family: 'Cinzel', 'Times New Roman', serif !important;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.nav, .navbar-nav, .m-btn, .ht-info, small, .badge-trust,
.eyebrow, .carta-cta, .hero-seal,
.faq-item summary, .cite-name, .header-cta {
    font-family: 'Outfit', 'Helvetica Neue', sans-serif;
}

.theme-color { color: var(--primary-color) !important; }
.theme2nd-color { color: var(--secondary-color) !important; }
.theme-bg { background-color: var(--light-color) !important; }

.m-btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    letter-spacing: 0.12em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    padding: 14px 28px !important;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.m-btn-round { border-radius: var(--border-radius) !important; }

.m-btn-green {
    background: var(--grad-gold) !important;
    border: 0 !important;
    box-shadow: 0 8px 22px rgba(119, 70, 51, 0.28);
}

.m-btn-green:hover {
    background: var(--grad-gold-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(119, 70, 51, 0.36);
}

.m-btn .white-color { color: #fff !important; }

.cta-whats { z-index: 1; }

/* —— Header editorial —— */
.header-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    background: var(--light-color);
}

/* Cobre o overscroll do mobile para o retrato não vazar no topo */
.header-nav::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 100vh;
    background: var(--light-color);
    pointer-events: none;
}

.header-nav .fixed-header-bar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
}

.header-nav .fixed-header-bar.theme-bg {
    background: rgba(251, 250, 248, 0.96) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(195, 154, 119, 0.35);
}

.header-nav .links-white a,
.header-nav .navbar-nav .nav-link {
    color: var(--dark-color) !important;
}

.navbar-nav .nav-link,
.main-navbar .navbar-nav > li > a {
    position: relative;
    padding: 0.65rem 1.05rem !important;
    margin: 0 0.1rem;
    font-size: 0.72rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.3;
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:before { width: 60%; }

.header-cta {
    display: none;
    margin-left: 1rem;
    padding: 10px 20px;
    min-height: 42px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff !important;
    background: var(--grad-gold);
    border: 0;
    border-radius: var(--border-radius);
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(119, 70, 51, 0.22);
}

.header-cta:hover {
    background: var(--grad-gold-hover);
    text-decoration: none;
    color: #fff !important;
}

@media (min-width: 992px) {
    .header-cta { display: inline-flex; align-items: center; gap: 8px; }

    .navbar-toggler,
    .header-nav .navbar-toggler,
    .extra-menu {
        display: none !important;
    }
}

.navbar-toggler,
.header-nav .navbar-toggler {
    border: 0 !important;
    padding: 0 !important;
    width: 40px;
    height: 40px;
    margin-left: 8px;
    background: transparent !important;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: none;
}

@media (max-width: 991px) {
    .navbar-toggler,
    .header-nav .navbar-toggler {
        display: flex !important;
    }
}

.navbar-toggler span,
.navbar-toggler .icon-bar,
.header-nav .navbar-toggler span {
    position: static !important;
    display: block !important;
    width: 22px !important;
    height: 1.5px !important;
    /* margin: 3px 0 !important; */
    background: var(--dark-color) !important;
    color: transparent !important;
    box-shadow: none !important;
    inset: auto !important;
}

/* —— Hero split —— */
.hero-editorial {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    background:
        radial-gradient(ellipse at 14% 18%, rgba(195, 154, 119, 0.32), transparent 52%),
        radial-gradient(ellipse at 48% 100%, rgba(176, 132, 91, 0.16), transparent 46%),
        linear-gradient(180deg, #FBFAF8 0%, var(--gold-pale) 58%, var(--gold-soft) 100%);
    position: relative;
    overflow: hidden;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4.5rem 5vw 5rem 8vw;
    position: relative;
    z-index: 2;
}

.hero-copy .m-btn-green {
    box-shadow: 0 10px 28px rgba(119, 70, 51, 0.32);
}

.hero-portrait {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem 0 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 42%, rgba(255, 248, 240, 0.55), transparent 42%),
        radial-gradient(ellipse at 70% 80%, rgba(161, 111, 77, 0.28), transparent 55%),
        linear-gradient(165deg, var(--gold-pale) 0%, var(--gold-soft) 48%, var(--gold) 140%);
}

.hero-mandala {
    position: absolute;
    width: min(620px, 92%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.42;
    animation: mandala-spin 64s linear infinite;
    z-index: 0;
}

.hero-mandala img { width: 100%; height: auto; }

.hero-frame {
    position: relative;
    z-index: 1;
    width: min(100%, 680px);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 12px 28px rgba(67, 36, 28, 0.22));
}

.hero-seal {
    position: absolute;
    left: 7%;
    bottom: 11%;
    width: 112px;
    height: 112px;
    border: 1px solid var(--gold-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(145deg, #F6E6DA 0%, #C39A77 100%);
    color: var(--dark-color);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.25;
    transform: rotate(-12deg);
    z-index: 2;
    box-shadow: 0 8px 20px rgba(67, 36, 28, 0.18);
}

.hero-rule {
    display: none;
}

.eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1.25rem;
}

.hero-kicker {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.hero-name {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(4.2rem, 8.5vw, 7.4rem);
    line-height: 0.85;
    letter-spacing: -0.03em;
    color: var(--dark-color);
}

.hero-lead {
    max-width: 34rem;
    margin: 1.6rem 0 0;
    font-size: clamp(1.15rem, 1.7vw, 1.38rem);
    color: var(--text-muted);
}

.hero-copy .btn-bar { margin-top: 2rem; }

.hero-trust {
    list-style: none;
    padding: 0;
    margin: 2.4rem 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.5rem;
    max-width: 28rem;
}

.hero-trust li {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-color);
    padding-left: 0.9rem;
    border-left: 1px solid var(--secondary-color);
}

/* —— Seções —— */
.section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 6.5rem 0;
}

.section > .container,
.footer-top > .container {
    position: relative;
    z-index: 1;
}

.section-cream { background: #FBFAF8; }
.bg-honey-soft { background: var(--gold-pale); }
.section-ink {
    background: var(--dark-color);
    color: var(--gold-pale);
}

.kicker {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.8rem;
}

.kicker::after {
    content: '';
    display: block;
    width: 42px;
    height: 2px;
    margin-top: 0.55rem;
    background: var(--grad-gold);
}

.section-title {
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    line-height: 1.2;
    color: var(--primary-color);
    max-width: 18ch;
}

.section-ink .section-title,
.section-ink .kicker,
.amor-spread .section-title,
.amor-spread h2,
.footer-top h1,
.footer-top h2,
.footer-top h3 {
    color: var(--gold-pale) !important;
}

.lede {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 38rem;
}

/* —— Ritual / dores —— */
.ritual-head {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 3.5rem;
}

.ritual-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(119, 70, 51, 0.2);
}

.ritual-list li {
    padding: 1.6rem 0;
    border-bottom: 1px solid rgba(119, 70, 51, 0.18);
}

.ritual-list p {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.45;
    color: var(--dark-color);
}

.ritual-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.ritual-foot p {
    margin: 0;
    max-width: 36rem;
    color: var(--text-muted);
}

/* —— Sobre spread —— */
.about-spread {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 720px;
    background: var(--gold-pale);
}

.about-bleed {
    position: relative;
    min-height: 520px;
}

.about-bleed img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-panel {
    padding: 6rem 7vw 5rem 4.5vw;
    background: #FBFAF8;
    position: relative;
}

.about-panel::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 12%;
    bottom: 12%;
    width: 42px;
    background: #FBFAF8;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 1.5rem;
}

.about-list li {
    position: relative;
    padding: 0.2rem 0 0.2rem 1.1rem;
    font-size: 1.02rem;
    color: var(--text-color);
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 6px;
    height: 1px;
    background: var(--gold-deep);
}

/* —— Amor ink split —— */
.amor-spread {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) 1.12fr;
    background: var(--dark-color);
    min-height: 720px;
}

.amor-photo {
    position: relative;
    margin: 0;
    min-height: 520px;
}

.amor-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.amor-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(67, 36, 28, 0.12) 0%, rgba(67, 36, 28, 0.42) 100%); */
    pointer-events: none;
}

.amor-spine-label {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    rotate: 180deg;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: #F6E6DA;
    font-size: 0.85rem;
    text-shadow: 0 2px 10px rgba(67, 36, 28, 0.55);
}

.amor-body {
    padding: 5.5rem 6vw 5rem 4.5vw;
    color: var(--gold-pale);
}

.amor-body .kicker {
    color: var(--gold) !important;
}

.amor-body .lede,
.amor-body p { color: #EDCFBA; }

.amor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.amor-col h3,
.amor-note h3 {
    color: #EDCFBA !important;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.amor-indicado-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amor-indicado-list li {
    position: relative;
    padding: 0.7rem 0 0.7rem 1.4rem;
    color: var(--gold-pale);
    font-size: 1.08rem;
    border-bottom: 1px solid rgba(195, 154, 119, 0.18);
}

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

.amor-indicado-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    top: 0.55rem;
    color: var(--gold);
    font-size: 1.4rem;
    line-height: 1;
}

.amor-note p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

/* —— Carta de serviços —— */
.carta {
    max-width: 860px;
    margin: 0 auto;
}

.carta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.4rem 0;
    border-bottom: 1px solid rgba(119, 70, 51, 0.18);
}

.carta-item:first-child { border-top: 1px solid rgba(119, 70, 51, 0.18); }

.carta-item h3 {
    font-size: clamp(1.55rem, 2.4vw, 1.95rem);
    color: var(--dark-color) !important;
    margin: 0 0 0.85rem;
    letter-spacing: 0.06em;
}

.carta-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.12rem;
    max-width: 42rem;
    line-height: 1.7;
}

.carta-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    width: 100%;
    max-width: 36rem;
}

.carta-tags li {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 0.45rem 0 0.45rem 0.85rem;
    border-left: 2px solid var(--gold);
    line-height: 1.35;
}

.carta-tags li::before { content: none; }

.carta-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 12px 26px;
    min-height: 48px;
    min-width: 168px;
    width: auto;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff !important;
    background: var(--grad-gold);
    border: 0;
    border-radius: var(--border-radius);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(119, 70, 51, 0.24);
}

.carta-cta:hover {
    background: var(--grad-gold-hover);
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

/* —— Caminho do amor —— */
.caminho-spread {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: #FBFAF8;
    min-height: 640px;
}

.caminho-copy {
    padding: 6rem 5vw 5.5rem 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.caminho-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.45rem;
    line-height: 1.4;
    color: var(--dark-color);
    margin: 1.4rem 0 1.6rem;
    max-width: 28rem;
}

.caminho-copy p {
    max-width: 38rem;
}

.caminho-photo {
    position: relative;
    margin: 0;
    min-height: 420px;
}

.caminho-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.88) contrast(1.04);
}

/* —— Editorial quotes —— */
.editorial-split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 560px;
}

.editorial-quote {
    background: var(--grad-gold);
    padding: 5.5rem 4vw 5rem 8vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.editorial-quote .kicker {
    color: #F6E6DA !important;
}

.editorial-quote .kicker::after {
    background: linear-gradient(90deg, #F6E6DA, transparent);
}

.editorial-quote p:not(.kicker) {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: clamp(2rem, 3.6vw, 3.1rem);
    line-height: 1.2;
    color: #FBFAF8;
    margin: 0;
}

.editorial-copy {
    padding: 5.5rem 8vw 5rem 4.5vw;
    background: #FBFAF8;
}

/* —— Galeria —— */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: start;
}

.gallery-grid figure {
    margin: 0;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
}

/* —— Depoimentos —— */
.quote-slide {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    padding: 1rem 0 2rem;
}

.quote-mark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 7rem;
    line-height: 0.4;
    color: var(--secondary-color);
    margin: 0 0 1rem;
}

.quote-slide blockquote {
    margin: 0;
    font-size: 1.45rem;
    font-style: italic;
    color: var(--dark-color);
    line-height: 1.55;
}

.cite-name {
    display: block;
    margin-top: 1.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

.owl-carousel .owl-dots { margin-top: 1.5rem; }
.owl-carousel .owl-dots .owl-dot span {
    background-color: rgba(195, 154, 119, 0.4);
    width: 8px;
    height: 8px;
}
.owl-carousel .owl-dots .owl-dot.active span {
    background-color: var(--dark-color);
}

/* —— FAQ —— */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 3.5rem;
}

.faq-item {
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
    border: 0;
    border-bottom: 1px solid rgba(119, 70, 51, 0.2);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.45rem 0.4rem 1.45rem 0;
    min-height: 56px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-color);
    line-height: 1;
    flex-shrink: 0;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item .faq-body {
    padding: 0 0 1.2rem;
    color: var(--text-muted);
    font-size: 1.08rem;
}

/* —— CTA colophon —— */
.cta-colophon {
    position: relative;
    background: linear-gradient(135deg, #C39A77 0%, #B0845B 42%, #774633 100%);
    padding: 7rem 8vw;
    overflow: hidden;
}

.cta-ghost {
    position: absolute;
    right: -2vw;
    top: 50%;
    transform: translateY(-52%);
    font-family: 'Cinzel', serif;
    font-size: clamp(5rem, 14vw, 11rem);
    letter-spacing: 0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
    pointer-events: none;
    line-height: 0.8;
    text-transform: uppercase;
}

.cta-colophon .kicker { color: #F6E6DA; }
.cta-colophon .kicker::after { background: linear-gradient(90deg, #F6E6DA, transparent); }
.cta-colophon .section-title,
.cta-colophon .lede { color: #fff; max-width: 18ch; }
.cta-colophon .lede { max-width: 38rem; margin: 1.2rem 0 2rem; }
.cta-colophon .section-title { max-width: 16ch; }

.cta-colophon .m-btn-green {
    background: #FBFAF8 !important;
    box-shadow: 0 8px 22px rgba(67, 36, 28, 0.22);
}

.cta-colophon .m-btn-green .white-color {
    color: var(--dark-color) !important;
}

.cta-colophon .m-btn-green:hover {
    background: #fff !important;
}

/* —— Footer —— */
.footer .footer-top,
.footer-top {
    background: var(--dark-color) !important;
    color: var(--gold-pale);
    position: relative;
    overflow: hidden;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.footer-top,
.footer-top p,
.footer-top li,
.footer-top .kicker,
.footer-top .legal-note {
    color: var(--gold-pale) !important;
}

.footer-spread {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    padding: 5.5rem 0 3.5rem;
}

.footer-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.6rem, 2.6vw, 2.15rem);
    line-height: 1.35;
    color: var(--gold-pale);
    margin: 0;
}

.footer-quote cite {
    display: block;
    margin-top: 1.2rem;
    font-style: normal;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(195, 154, 119, 0.22);
    font-size: 1.08rem;
    color: var(--gold-pale);
}

.contact-list a {
    color: var(--gold) !important;
    display: inline-block;
    padding: 0.25rem 0;
    min-height: 44px;
}

.legal-note {
    opacity: 0.7;
    font-size: 0.88rem;
    max-width: 40rem;
    margin: 2.5rem 0 0;
    color: var(--gold-soft);
}

.footer-bottom {
    background: #ffffff;
    border-top: 1px solid rgba(195, 154, 119, 0.18);
}


/* WhatsApp float */
.social-icon a {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
    transition: var(--transition);
}

.social-icon a:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3) !important;
}

.yellow-after:after,
.theme2nd-after:after { display: none !important; }

.deco { display: none; }

@keyframes mandala-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.reveal { animation: fade-up 0.9s ease both; }
.reveal-delay-1 { animation-delay: 0.12s; }
.reveal-delay-2 { animation-delay: 0.24s; }
.reveal-delay-3 { animation-delay: 0.36s; }

@keyframes fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

/* —— Responsivo —— */
@media (min-width: 992px) {
    .main-navbar .navbar-nav > li > a {
        font-size: 0.72rem !important;
        font-weight: 500 !important;
        display: inline-block;
        padding: 0.65rem 1.05rem !important;
    }

    .hero-copy {
        justify-content: flex-end;
        padding: 3.5rem 4vw 4.5rem 7vw;
    }

    .amor-spread {
        grid-template-columns: 1.12fr minmax(280px, 0.88fr);
    }

    .amor-body {
        order: 1;
        padding: 5.5rem 4.5vw 5rem 7vw;
    }

    .amor-photo {
        order: 2;
    }
}

@media (min-width: 1400px) {
    .hero-frame {
        width: min(96%, 820px);
    }
}

@media (max-width: 991px) {
    .main-navbar .navbar-collapse {
        background: #FBFAF8;
        padding: 0.5rem 0 1rem;
    }

    .main-navbar .navbar-nav > li {
        margin: 0;
    }

    .main-navbar .navbar-nav > li > a,
    .navbar-nav .nav-link,
    .header-nav .navbar-nav .nav-link {
        display: flex !important;
        align-items: center;
        min-height: 52px;
        /* padding: 1rem 1.35rem !important; */
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
        letter-spacing: 0.12em;
    }

    .hero-editorial,
    .about-spread,
    .editorial-split,
    .caminho-spread,
    .ritual-head,
    .amor-spread,
    .amor-grid,
    .faq-grid,
    .footer-spread {
        grid-template-columns: 1fr;
    }

    .hero-editorial {
        min-height: auto;
        overflow: visible;
    }

    .hero-portrait {
        order: -1;
        padding: 0;
        align-items: flex-end;
        justify-content: center;
        min-height: 0;
        overflow: hidden;
    }

    .hero-mandala {
        width: min(420px, 92%);
        top: 42%;
        right: auto;
        left: 50%;
        margin-left: calc(min(420px, 92%) / -2);
        transform: none;
        animation: none;
        opacity: 0.22;
    }

    .hero-frame {
        width: min(100%, 440px);
        margin: 0 auto;
    }

    .hero-frame img {
        display: block;
        width: 100%;
        height: auto;
        filter: drop-shadow(0 8px 24px rgba(67, 36, 28, 0.18));
    }

    .hero-seal {
        left: 6%;
        bottom: 8%;
        width: 78px;
        height: 78px;
        font-size: 0.52rem;
    }

    .hero-copy {
        padding: 1rem 1.4rem 2.4rem;
        text-align: center;
        align-items: center;
    }

    .hero-lead {
        margin-top: 0.85rem;
        font-size: 1.08rem;
    }

    .hero-lead-secondary {
        display: none;
    }

    .hero-copy .btn-bar {
        margin-top: 1.15rem;
    }

    .hero-trust {
        grid-template-columns: 1fr 1fr;
        margin-top: 1.2rem;
        gap: 0.55rem 1rem;
        max-width: 100%;
        text-align: left;
    }

    .hero-trust li {
        font-size: 0.64rem;
        padding-left: 0.7rem;
    }

    .amor-photo {
        min-height: 340px;
        order: -1;
    }

    .amor-spine-label {
        writing-mode: horizontal-tb;
        rotate: 0deg;
        top: auto;
        bottom: 1.1rem;
        left: 1.2rem;
        transform: none;
        letter-spacing: 0.32em;
    }

    .amor-spine {
        border-right: 0;
        border-bottom: 1px solid rgba(195, 154, 119, 0.28);
        padding: 1.2rem 0;
    }

    .amor-spine span {
        writing-mode: horizontal-tb;
        transform: none;
        letter-spacing: 0.32em;
    }

    .amor-body,
    .about-panel,
    .editorial-quote,
    .editorial-copy,
    .caminho-copy,
    .cta-colophon { padding-left: 1.4rem; padding-right: 1.4rem; }

    .caminho-copy { padding-top: 3.5rem; padding-bottom: 2rem; }
    .caminho-photo { min-height: 340px; order: -1; }

    .about-panel::before { display: none; }
    .about-list { grid-template-columns: 1fr; }
    .carta-item { padding: 2.35rem 0; }

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

    .section { padding: 4.5rem 0; }
    .cta-ghost { display: none; }

    .section-title,
    .cta-colophon .section-title {
        max-width: none;
        font-size: 1.85rem;
    }

    .lede {
        max-width: none;
        font-size: 1.12rem;
    }

    .ritual-head {
        gap: 1.25rem;
    }
}

@media (max-width: 575px) {
    .hero-name { font-size: 3.1rem; }
    .hero-kicker { letter-spacing: 0.22em; }
    .hero-portrait { padding-top: 0; padding-bottom: 0; }
    .hero-frame { width: 100%; }
    .ritual-list li { padding: 1.45rem 0; }
    .carta-cta {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.8rem;
        min-height: 52px;
        margin-top: 1.4rem;
    }

    .carta-item {
        padding: 2.5rem 0;
    }

    .carta-tags {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    .faq-grid { grid-template-columns: 1fr; gap: 0; }

    .faq-item summary {
        padding: 1.35rem 0.25rem 1.35rem 0;
        min-height: 56px;
        font-size: 1.02rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
