/* Helena Espiritualista do Amor
   Paleta neutra (creme → bege → caramelo → café) */

: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: 14px;
    --box-shadow: 0 8px 28px rgba(67, 36, 28, 0.12);
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.display-1,
.display-2,
.display-3,
.display-4,
.font-alt {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
    letter-spacing: 0.01em;
    font-weight: 600;
}

.theme-color {
    color: var(--primary-color) !important;
}

.theme2nd-color {
    color: var(--secondary-color) !important;
}

.theme-bg {
    background-color: var(--gold-pale) !important;
}

.theme3rd-bg {
    background: linear-gradient(165deg, #FBFAF8 0%, var(--gold-pale) 45%, var(--gold-soft) 100%) !important;
}

.bg-gold {
    background: linear-gradient(135deg, #C39A77 0%, #B0845B 45%, #774633 100%) !important;
}

.bg-honey-soft {
    background: linear-gradient(180deg, #FBFAF8 0%, var(--gold-pale) 100%);
    position: relative;
    overflow: hidden;
}

.section-gold-soft {
    background: linear-gradient(180deg, var(--gold-pale) 0%, #FBFAF8 55%, var(--gold-soft) 100%);
    position: relative;
    overflow: hidden;
}

.section-cream {
    background: #FBFAF8;
    position: relative;
    overflow: hidden;
}

.section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section>.container,
.section>.container-fluid,
.footer-top>.container,
.section-gold-soft>.container,
.section-gold-soft>.container-fluid,
.section-cream>.container,
.bg-honey-soft>.container {
    position: relative;
    z-index: 1;
}

.m-btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.m-btn-green,
.cta-whats {
    position: relative;
    background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%) !important;
    background-size: 200% 200% !important;
    animation: goldShimmerBg 6s ease infinite;
    border: 1px solid #FFE49E !important;
    box-shadow: 0 6px 22px rgba(179, 135, 40, 0.4), 0 0 16px rgba(252, 246, 186, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.95) !important;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
    overflow: hidden;
    z-index: 1;
}

.m-btn-green:hover,
.cta-whats:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 32px rgba(179, 135, 40, 0.55), 0 0 26px rgba(252, 246, 186, 0.6), inset 0 1px 3px #FFFFFF !important;
}

.m-btn-green::before,
.cta-whats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.85) 50%, transparent 100%);
    transform: skewX(-25deg);
    animation: goldSweep 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
    z-index: 2;
}

.m-btn-green span,
.cta-whats span,
.m-btn span {
    color: #2C1808 !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 3;
}

@keyframes goldShimmerBg {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes goldSweep {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.m-btn-outline-gold {
    background: transparent !important;
    border: 1.5px solid #fff !important;
    color: #fff !important;
}

.m-btn-outline-gold:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
}

.border-radius-15 {
    border-radius: var(--border-radius) !important;
}

.shadow-hover {
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.shadow-hover:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow);
}

/* —— Header claro —— */
.header-nav {
    box-shadow: 0 2px 18px rgba(67, 36, 28, 0.08);
}

.header-nav .fixed-header-bar.theme-bg {
    background: #FBFAF8 !important;
}

.header-top.bg-gold {
    padding: 8px 0;
}

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

.header-nav .header-top .links-white a,
.header-nav .header-top .links-white span {
    color: #fff !important;
}

/* .header-nav .navbar-toggler .icon-bar {
    background-color: var(--primary-color) !important;
} */

.navbar-nav .nav-link {
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0.85rem !important;
    margin: 0 2px;
    font-size: 0.92rem;
}

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

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

/* —— Elementos decorativos —— */
.deco {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.deco img {
    display: block;
    width: 100%;
    height: auto;
}

.deco-anjo {
    width: clamp(140px, 18vw, 260px);
    opacity: 0.7;
    animation: float-soft 7s ease-in-out infinite;
}

.deco-estrela {
    width: clamp(80px, 12vw, 150px);
    opacity: 0.65;
    animation: twinkle 4.5s ease-in-out infinite;
}

.deco-pena {
    width: clamp(100px, 14vw, 190px);
    opacity: 0.6;
    animation: float-soft 9s ease-in-out infinite reverse;
}

.deco-tl {
    top: 8%;
    left: 2%;
}

.deco-tr {
    top: 10%;
    right: 3%;
}

.deco-bl {
    bottom: 8%;
    left: 4%;
}

.deco-br {
    bottom: 10%;
    right: 3%;
}

.deco-ml {
    top: 40%;
    left: 1%;
}

.deco-mr {
    top: 35%;
    right: 2%;
}

.deco-hero-anjo {
    width: clamp(180px, 22vw, 320px);
    opacity: 0.8;
    top: auto;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    animation: float-anjo 8s ease-in-out infinite;
}

.deco-hero-estrela-l {
    top: 16%;
    left: 4%;
    width: clamp(90px, 14vw, 160px);
    opacity: 0.75;
    z-index: 1;
}

.deco-hero-estrela-r {
    top: 20%;
    right: 5%;
    width: clamp(70px, 11vw, 130px);
    opacity: 0.7;
    z-index: 1;
    animation-delay: 1.2s;
}

.deco-hero-pena {
    top: 58%;
    right: 3%;
    width: clamp(110px, 15vw, 180px);
    opacity: 0.7;
    z-index: 1;
    transform: rotate(18deg);
}

.deco-watermark {
    width: clamp(200px, 28vw, 380px);
    opacity: 0.18;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: none;
}

@keyframes float-soft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes float-anjo {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-14px);
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.55;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.06) rotate(8deg);
    }
}

/* Trust badges */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    margin-top: 1.75rem;
}

.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--dark-color);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(195, 154, 119, 0.55);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

/* Hero */
.hero-oxum {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #EDCFBA !important;
    background-image: url('../img/bg-topo.avif') !important;
    background-repeat: no-repeat !important;
    background-position: center 28% !important;
    background-size: cover !important;
    overflow: hidden;
}

.hero-oxum::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(251, 250, 248, 0.28) 0%, rgba(251, 250, 248, 0.08) 42%, rgba(67, 36, 28, 0.18) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-oxum .container {
    position: relative;
    z-index: 1;
}

.hero-brand {
    font-size: clamp(1.85rem, 4.5vw, 3.1rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--primary-color) !important;
}

.hero-lead {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    color: var(--text-muted) !important;
}

.frase-topo {
    text-shadow: none;
    color: var(--primary-color) !important;
}

.hero-visual {
    display: inline-block;
    margin-top: 1.5rem;
    margin-bottom: 0.35rem;
    position: relative;
    z-index: 1;
}

.hero-visual::before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 48%;
    width: 158%;
    height: 158%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(circle at 36% 40%, rgba(255, 255, 255, 0.65), transparent 42%),
        radial-gradient(circle at 50% 50%, rgba(195, 154, 119, 0.32), transparent 68%);
    box-shadow: inset -36px 0 0 rgba(119, 70, 51, 0.08);
    pointer-events: none;
}

.hero-visual img {
    max-width: min(320px, 75vw);
    height: auto;
    filter: drop-shadow(0 12px 28px rgba(67, 36, 28, 0.2));
    position: relative;
    z-index: 1;
}

.moon-mark {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0.85rem auto 0.65rem;
    border-radius: 50%;
    box-shadow: inset -6px 0 0 0 var(--primary-color);
    opacity: 0.72;
}

/* Mandala branca tingida com a paleta neutra (mask) */

/* Pain points */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.pain-card {
    padding: 1.25rem 1rem;
    background: #fff;
    border-radius: var(--border-radius);
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 4px 18px rgba(67, 36, 28, 0.08);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow);
}

.pain-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    background: var(--gold-pale);
    box-shadow: 0 4px 12px rgba(67, 36, 28, 0.08);
    font-size: 1.45rem;
    line-height: 1;
}

.pain-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.pain-card p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.service-card .amor-indicado-list {
    margin-top: 1rem;
}

.service-card .amor-indicado-list li {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Service cards */
.service-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 1.75rem 1.5rem;
    height: 100%;
    border: 1px solid rgba(195, 154, 119, 0.28);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.service-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    display: block;
}

.service-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.65rem;
    font-size: 1.2rem;
}

.service-card p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Steps — agora em fundo claro */
.steps-row {
    position: relative;
}

.step-item {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C39A77, #774633);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 18px rgba(67, 36, 28, 0.3);
}

.step-item h5 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.05rem;
}

/* FAQ */
.faq-item {
    background: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 0.85rem;
    border: 1px solid rgba(195, 154, 119, 0.28);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(67, 36, 28, 0.45);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.15rem 1.35rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent-color);
    line-height: 1;
    flex-shrink: 0;
}

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

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

/* Differentials */
.diff-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.85rem 1.5rem;
}

.diff-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.diff-list li::before {
    content: none;
}

/* Quote */
.quote-oxum {
    max-width: 40rem;
    margin: 2rem auto 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-muted);
    border-left: 3px solid var(--secondary-color);
    padding-left: 1.25rem;
    text-align: left;
}

.quote-oxum cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--primary-color);
    letter-spacing: 0.04em;
}

/* Testimonials */
.testimonial-card {
    border-radius: var(--border-radius) !important;
    box-shadow: var(--box-shadow) !important;
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(67, 36, 28, 0.15) !important;
}

.testimonial-card h5 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-style: italic;
    position: relative;
    padding: 0 6px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.mandala-rotation {
    animation: mandala-spin 48s linear infinite;
}

@keyframes mandala-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

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

    to {
        transform: translate(-50%, -48%) rotate(360deg);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.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;
}

.portfolio-box-02 {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(67, 36, 28, 0.08);
    transition: var(--transition);
}

.portfolio-box-02:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(67, 36, 28, 0.15);
}

.portfolio-box-02 img {
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.portfolio-box-02:hover img {
    transform: scale(1.05);
}

.thumbnail-gallery {
    object-fit: cover;
    object-position: center;
}

.footer-top {
    position: relative;
    overflow: hidden;
}

.footer-top.theme3rd-bg {
    background: linear-gradient(180deg, var(--gold-pale) 0%, var(--gold-soft) 100%) !important;
}

.footer-top .text-white,
.footer-top .white-color {
    color: var(--text-color) !important;
}

.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;
}

.cta-whats {
    position: relative;
    padding: 14px 30px !important;
    overflow: hidden;
    z-index: 1;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background-color: var(--secondary-color);
}

.owl-carousel .owl-dots .owl-dot span {
    background-color: rgba(195, 154, 119, 0.4);
}

.contact-block h5 {
    color: var(--gold-deep);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.contact-block a,
.contact-block p {
    color: var(--text-color) !important;
    font-size: 1.1rem;
}

.about-photo {
    display: inline-block;
    max-width: 380px;
    width: 100%;
    padding: 7px;
    background: linear-gradient(145deg, #B0845B 0%, #C39A77 40%, #774633 70%, #EDCFBA 100%);
    border-radius: 50% 50% 46% 46% / 38% 38% 62% 62%;
    box-shadow: 0 12px 36px rgba(67, 36, 28, 0.22);
}

.about-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 50% 50% 46% 46% / 38% 38% 62% 62%;
    background: #fff;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    max-width: 38rem;
    text-align: left;
}

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

.about-list li::before {
    content: '☽';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.85rem;
    top: 0.65rem;
}

.amor-list-box {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(195, 154, 119, 0.35);
    border-radius: var(--border-radius);
    padding: 2rem 1.75rem;
    max-width: 44rem;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(67, 36, 28, 0.08);
}

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

.amor-indicado-list li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.75rem;
    color: var(--text-color);
    font-size: 1.12rem;
    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;
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Textos em seções que antes eram escuras */
.section-gold-soft .white-color,
.theme3rd-bg .white-color,
.theme-bg .white-color:not(.m-btn .white-color),
#consulta .white-color:not(.m-btn span),
#diferenciais .white-color:not(.m-btn span),
#amorosos .white-color:not(.m-btn span),
#depoimentos .white-color {
    color: var(--text-color) !important;
}

#consulta .font-3,
#consulta .font-2,
#diferenciais .font-2,
#amorosos .font-2,
#amorosos .font-3,
#depoimentos .font-2 {
    color: var(--text-muted) !important;
}

#consulta .theme2nd-color,
#diferenciais .theme2nd-color,
#amorosos .theme2nd-color,
#depoimentos .theme2nd-color {
    color: var(--primary-color) !important;
}

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

.bg-gold .white-color,
.bg-gold .theme2nd-color,
.bg-gold h2,
.bg-gold h6 {
    color: #fff !important;
}

.bg-gold .theme2nd-color {
    color: #F6E6DA !important;
}

.yellow-after:after,
.theme2nd-after:after {
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent) !important;
}

.after-50px:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--gold-pale);
    box-shadow: inset -3.5px 0 0 0 var(--secondary-color);
    transform: translateX(-50%);
    z-index: 1;
}

.mandala-rotation {
    height: auto;
    margin: 0 auto 0.75rem;
    opacity: 0.88;
}

@media (min-width: 768px) {
    .pain-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
    }

    .pain-card {
        padding: 1.5rem 1.35rem;
    }

    .pain-card p {
        font-size: 1.1rem;
    }

    .mandala-rotation {
        width: 220px;
    }
}

@media (max-width: 991px) {
    .deco-anjo {
        width: 130px;
        opacity: 0.65;
    }

    .deco-estrela {
        width: 88px;
        opacity: 0.7;
    }

    .deco-pena {
        width: 110px;
        opacity: 0.65;
    }

    .deco-hero-estrela-l {
        display: block;
        top: 7.5rem;
        left: 2%;
        width: 92px;
        opacity: 0.8;
    }

    .deco-hero-estrela-r {
        display: block;
        top: 8.5rem;
        right: 2%;
        width: 78px;
        opacity: 0.75;
    }

    .deco-hero-pena {
        display: block;
        top: auto;
        bottom: 1.5rem;
        right: 2%;
        left: auto;
        width: 100px;
        opacity: 0.75;
        transform: rotate(12deg);
    }
}

@media (max-width: 768px) {

    h1.display-4,
    h2.display-4,
    h3.display-4,
    .display-4 {
        font-size: 1.85rem;
    }

    .hero-oxum {
        min-height: auto;
        padding: 7rem 0 4rem;
    }

    .hero-mandala {
        width: 220px;
        height: 220px;
        margin-top: 1.75rem;
    }

    .hero-mandala-bg {
        width: min(480px, 110vw);
        height: min(480px, 110vw);
    }

    .p-60px-lr {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .badge-trust {
        font-size: 0.72rem;
        padding: 7px 12px;
    }

    .cta-whats {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 13px 22px !important;
    }

    .hero-oxum .cta-whats,
    .bg-gold .cta-whats,
    .footer-top .cta-whats,
    #ajuda .cta-whats {
        width: 100%;
        max-width: 22rem;
        min-height: 52px;
    }

    .service-card .cta-whats {
        width: auto;
        max-width: none;
        min-height: 44px;
        padding: 10px 18px !important;
    }

    .moon-mark {
        width: 18px;
        height: 18px;
    }

    .deco-tl,
    .deco-tr {
        top: 1rem;
        width: 96px !important;
        opacity: 0.7 !important;
    }

    .deco-bl,
    .deco-br {
        bottom: 1rem;
        width: 96px !important;
        opacity: 0.7 !important;
    }

    .deco-anjo.deco-tl,
    .deco-anjo.deco-tr,
    .deco-anjo.deco-bl,
    .deco-anjo.deco-br {
        width: 110px !important;
        opacity: 0.65 !important;
    }

    .deco-hero-estrela-l {
        top: 6.75rem;
        width: 86px;
        opacity: 0.85;
    }

    .deco-hero-estrela-r {
        top: 7.25rem;
        width: 72px;
        opacity: 0.8;
    }

    .deco-hero-pena {
        bottom: 1rem;
        width: 95px;
        opacity: 0.8;
    }

    .deco-watermark {
        width: 200px;
        opacity: 0.22;
    }
}

/* —— Seção Indicados (Layout Moderno) —— */
.badge-gold-subtle {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(246, 230, 218, 0.9), rgba(237, 207, 186, 0.6));
    border: 1px solid rgba(195, 154, 119, 0.4);
    border-radius: 50px;
}

.indicados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.25rem;
}

.indicados-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.35rem 1.25rem;
    background: #FFFFFF;
    border: 1px solid rgba(195, 154, 119, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(67, 36, 28, 0.05);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.indicados-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
    opacity: 0.8;
    transition: var(--transition);
}

.indicados-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(67, 36, 28, 0.12);
    border-color: rgba(195, 154, 119, 0.6);
}

.indicados-card:hover::before {
    width: 6px;
    opacity: 1;
}

.indicados-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F6E6DA 0%, #EDCFBA 100%);
    border: 1px solid rgba(195, 154, 119, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(67, 36, 28, 0.06);
    transition: transform 0.3s ease;
}

.indicados-card:hover .indicados-icon {
    transform: scale(1.1) rotate(4deg);
}

.indicados-content h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.indicados-content p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-color);
    margin: 0;
}

/* —— Seção Contato & Footer (Layout Moderno) —— */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: #FFFFFF;
    border: 1px solid rgba(195, 154, 119, 0.3);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: 0 4px 18px rgba(67, 36, 28, 0.04);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(67, 36, 28, 0.1);
    border-color: rgba(195, 154, 119, 0.6);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.85rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #F6E6DA 0%, #EDCFBA 100%);
    border: 1px solid rgba(195, 154, 119, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(67, 36, 28, 0.06);
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card h5 {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.contact-card p,
.contact-card a {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.45;
    text-decoration: none;
}

.contact-card a {
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* Quote Card Refinada */
.quote-modern-card {
    max-width: 44rem;
    margin: 2.5rem auto 1.8rem;
    padding: 2.2rem 2rem 1.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 230, 218, 0.55));
    border: 1px solid rgba(195, 154, 119, 0.35);
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(67, 36, 28, 0.05);
    position: relative;
    text-align: center;
}

.quote-modern-card::before {
    content: '“';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.8rem;
    line-height: 1;
    color: var(--secondary-color);
    background: #FAF5F0;
    padding: 0 14px;
}

.quote-modern-card p {
    font-style: italic;
    font-size: 1.12rem;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.quote-modern-card cite {
    display: inline-block;
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-color);
}

/* Disclaimer Box */
.disclaimer-box {
    max-width: 42rem;
    margin: 1.8rem auto 0;
    padding: 1.1rem 1.35rem;
    background: rgba(246, 230, 218, 0.45);
    border: 1px solid rgba(195, 154, 119, 0.28);
    border-radius: 14px;
    text-align: center;
}

.disclaimer-box p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: #774633;
    opacity: 0.9;
    margin: 0;
}

/* 4. Faixa CTA Aveludada Café/Chocolate Profundo */
.cta-velvet-bg {
    background: linear-gradient(135deg, #43241C 0%, #2A140F 100%) !important;
    border-top: 1px solid rgba(195, 154, 119, 0.35);
    border-bottom: 1px solid rgba(195, 154, 119, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-velvet-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* —— Upgrade Seção Serviços —— */
.service-card {
    background: #FFFFFF;
    border: 1px solid rgba(195, 154, 119, 0.35);
    border-radius: 18px;
    padding: 2rem 1.6rem;
    height: 100%;
    box-shadow: 0 4px 18px rgba(67, 36, 28, 0.04);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold));
    opacity: 0.7;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(67, 36, 28, 0.12);
    border-color: rgba(195, 154, 119, 0.6);
}

.service-card:hover::before {
    height: 4px;
    opacity: 1;
}

.service-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.service-card p {
    font-size: 0.93rem;
    line-height: 1.55;
    color: var(--text-color);
    margin: 0;
}

/* —— Upgrade Seção Como Funciona (Timeline) —— */
.steps-row {
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.step-num {
    width: 52px;
    height: 52px;
    line-height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F6E6DA 0%, #EDCFBA 100%);
    border: 2px solid var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 14px rgba(67, 36, 28, 0.08);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.step-item:hover .step-num {
    transform: scale(1.12);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #FFFFFF;
}

.step-item h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.45;
}

/* —— Upgrade Seção Galeria —— */
.thumbnail-gallery {
    border-radius: 16px !important;
    border: 1px solid rgba(195, 154, 119, 0.3) !important;
    box-shadow: 0 6px 20px rgba(67, 36, 28, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.portfolio-box-02 {
    border-radius: 16px !important;
    overflow: hidden;
}

.portfolio-box-02:hover .thumbnail-gallery {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(67, 36, 28, 0.18), 0 0 25px rgba(212, 175, 55, 0.2) !important;
}

/* —— Upgrade Seção Depoimentos —— */
.testimonial-card {
    border-radius: 20px !important;
    border: 1px solid rgba(195, 154, 119, 0.35) !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF5F0 100%) !important;
    padding: 2rem 1.5rem !important;
    box-shadow: 0 6px 22px rgba(67, 36, 28, 0.06) !important;
    position: relative;
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(67, 36, 28, 0.12) !important;
    border-color: rgba(195, 154, 119, 0.6) !important;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    letter-spacing: 2px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F6E6DA 0%, #EDCFBA 100%);
    border: 1px solid rgba(195, 154, 119, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-color);
    margin: 0 auto 0.75rem;
}

/* —— Hero Header Block Luxo (Alta Legibilidade) —— */
.hero-header-block {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hero-tag-pill {
    display: inline-block;
    background: rgba(67, 36, 28, 0.07);
    border: 1px solid rgba(67, 36, 28, 0.25);
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(67, 36, 28, 0.06);
}

.hero-tag-pill span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #43241C;
    text-transform: uppercase;
}

.hero-brand {
    font-size: 2.9rem;
    font-weight: 700;
    line-height: 1.18;
    color: #361B14;
    margin-bottom: 14px;
}

.hero-gradient-text {
    color: #43241C;
    background: linear-gradient(135deg, #43241C 0%, #6E3827 50%, #361B14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    font-weight: 800;
}

.hero-specialties {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 16px 0 22px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #43241C;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-specialties span:not(.dot) {
    color: #43241C;
}

.hero-specialties .dot {
    color: #B8860B;
    font-size: 0.85rem;
}

.hero-lead {
    font-size: 1.18rem;
    line-height: 1.65;
    color: #361B14;
    max-width: 680px;
    margin: 0 auto 24px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .hero-brand {
        font-size: 2.2rem;
    }

    .hero-specialties {
        font-size: 0.88rem;
        gap: 6px 10px;
    }

    .hero-lead {
        font-size: 1.05rem;
    }
}