/* ============================================================
   INSTITUTO ACOLHER - Clean & Professional
   ============================================================ */

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

:root {
    /* Paleta alinhada ao site Lovable (HSL → hex) */
    --gold: #D4A52A;          /* primary HSL(42 65% 50%) */
    --gold-light: #F0C649;    /* gold-glow HSL(45 85% 62%) */
    --gold-dark: #AD7C1F;     /* gold-deep HSL(38 70% 40%) */
    --brown: #5C4228;
    --brown-light: #8B6A3E;
    --yellow: #FAC038;
    --green: #4F6238;         /* moss HSL(90 28% 28%) */
    --green-light: #5B6D49;   /* sage HSL(90 22% 38%) */
    --green-dark: #303D1D;    /* moss-deep HSL(90 35% 18%) */
    --white: #FFFFFF;
    --off-white: #FDF9F2;     /* warm-cream */
    --cream: #F9F1DE;         /* champagne HSL(42 60% 94%) */
    --cream-soft: #FAECD0;    /* accent gold HSL(42 75% 92%) */
    --sage-light: #F1F4EC;    /* HSL(90 25% 95%) */
    --gray: #7A7670;
    --text-dark: #3E4D2C;     /* foreground HSL(90 28% 22%) */
    --text-medium: #5B6D49;   /* sage */
    --text-light: #9CA3AF;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
    --shadow-gold: 0 4px 16px rgba(212,165,42,0.22);
    --ease: cubic-bezier(0.4,0,0.2,1);
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    --radius: 12px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    --section-py: 100px;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

/* ============================================================
   UTILITIES (Lovable parity)
   ============================================================ */
.font-display { font-family: var(--font-heading); }
.font-body    { font-family: var(--font-body); }

.text-gradient-gold {
    background: linear-gradient(135deg, #b67020, #fac038, #e49e25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-moss {
    background: linear-gradient(135deg, #2e3e1e, #52683b, #40532d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-gold     { background: linear-gradient(135deg, #e49e25, #fbc851); }
.bg-gradient-sage     { background: linear-gradient(135deg, #475b33, #61764c); }
.bg-gradient-luminous { background: radial-gradient(ellipse at top, #fdfaf2, #fff, #fff); }
.bg-gradient-airy     { background: radial-gradient(ellipse at top left, #f5f7f2, #fff 55%, #fdf9f2); }

.shadow-soft { box-shadow: 0 4px 30px rgba(46, 62, 30, 0.06); }
.shadow-gold { box-shadow: 0 8px 28px rgba(212, 165, 42, 0.22); }

.tag-decorative {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 18px;
}

.pill-stars {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e49e25, #fbc851);
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    box-shadow: 0 8px 28px rgba(212, 165, 42, 0.25);
}
.pill-stars .stars { display: inline-flex; gap: 1px; }
.pill-stars .stars svg { width: 13px; height: 13px; fill: #fff; }

.btn-pill-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e49e25, #fbc851);
    color: #fff;
    padding: 12px 28px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: none;
    box-shadow: 0 8px 22px rgba(212, 165, 42, 0.25);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-pill-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 165, 42, 0.4);
}

@keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer-blur {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50%      { opacity: 0.9;  transform: scale(1.08); }
}
.animate-fade-in    { animation: fade-in 1s ease-out both; }
.animate-fade-in-up { animation: fade-in-up 0.9s ease-out both; }
.animate-shimmer    { animation: shimmer-blur 4s ease-in-out infinite; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-500 { animation-delay: 0.5s; }
.delay-700 { animation-delay: 0.7s; }

/* ============================================================
   ASSINATURA VISUAL PRÓPRIA (Instituto Acolher CI4)
   ============================================================ */

/* Padrão de pontos sutil para fundos de seção */
.dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 165, 42, 0.18) 1px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.6;
}
.dot-pattern--mask {
    mask: linear-gradient(to bottom, #000 0%, transparent 80%);
    -webkit-mask: linear-gradient(to bottom, #000 0%, transparent 80%);
}

/* Divisor ornamental com diamante central */
.divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px auto;
    max-width: 240px;
}
.divider-ornament::before,
.divider-ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.divider-ornament svg {
    width: 22px; height: 22px;
    color: var(--gold);
    flex-shrink: 0;
    transform: rotate(45deg);
}

/* Número grande estilizado para etapas */
.step-number-display {
    font-family: var(--font-heading);
    font-size: 5.2rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    background: linear-gradient(135deg, #b67020 0%, #fac038 60%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    display: block;
    letter-spacing: -0.04em;
}

/* Frame ornado com cantos */
.frame-ornate {
    position: relative;
    padding: 14px;
}
.frame-ornate::before,
.frame-ornate::after,
.frame-ornate > .frame-corner-bl,
.frame-ornate > .frame-corner-br {
    content: '';
    position: absolute;
    width: 28px; height: 28px;
    border-color: var(--gold);
    border-style: solid;
    border-width: 0;
}
.frame-ornate::before { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.frame-ornate::after { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; }
.frame-ornate > .frame-corner-bl { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; }
.frame-ornate > .frame-corner-br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }
.frame-ornate img { display: block; width: 100%; }

/* Mandala SVG decorativa (fundo) */
.mandala-deco {
    position: absolute;
    width: 380px; height: 380px;
    color: var(--gold);
    opacity: 0.08;
    pointer-events: none;
    animation: mandala-spin 80s linear infinite;
}
@keyframes mandala-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Aspas decorativas ornadas */
.quote-mark-deco {
    position: absolute;
    top: -10px; left: 14px;
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: rgba(212, 165, 42, 0.18);
    pointer-events: none;
    user-select: none;
    font-style: italic;
}

/* TIMELINE — exclusiva CI4 */
.timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 16px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
    transform: translateX(-0.5px);
}
.timeline__item {
    position: relative;
    width: 50%;
    padding: 26px 56px;
}
.timeline__item:nth-child(odd) { left: 0; padding-right: 76px; text-align: right; }
.timeline__item:nth-child(even) { left: 50%; padding-left: 76px; text-align: left; }
.timeline__item::before {
    content: '';
    position: absolute;
    top: 38px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fac038, #b67020);
    box-shadow: 0 0 0 6px rgba(212, 165, 42, 0.18), 0 0 0 1px rgba(212, 165, 42, 0.4);
}
.timeline__item:nth-child(odd)::before  { right: -8px; }
.timeline__item:nth-child(even)::before { left: -8px; }
.timeline__year {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1;
    background: linear-gradient(135deg, #b67020, #fac038);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 6px;
    display: block;
}
.timeline__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--green-dark);
    margin: 0 0 6px;
}
.timeline__text {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline::before { left: 24px; }
    .timeline__item,
    .timeline__item:nth-child(odd),
    .timeline__item:nth-child(even) {
        width: 100%; left: 0;
        padding: 24px 16px 24px 56px;
        text-align: left;
    }
    .timeline__item:nth-child(odd)::before,
    .timeline__item:nth-child(even)::before { left: 16px; right: auto; }
}

/* PAQ — paisagem etérea bem clarinha com flor de lótus */
.paq-landscape-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 96px;
    background: #fdfaf2;
}
.paq-landscape-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.paq-landscape-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.08) saturate(0.85);
}
.paq-landscape-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212, 165, 42, 0.25), transparent 70%),
        radial-gradient(ellipse 70% 50% at 70% 20%, rgba(249, 241, 222, 0.5), transparent 60%),
        linear-gradient(180deg, rgba(253, 250, 242, 0.85) 0%, rgba(253, 250, 242, 0.7) 40%, rgba(250, 236, 208, 0.75) 100%);
}
.paq-landscape-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        radial-gradient(circle at 20% 70%, rgba(212, 165, 42, 0.18) 1.5px, transparent 2px),
        radial-gradient(circle at 80% 60%, rgba(91, 109, 73, 0.14) 1.5px, transparent 2px);
    background-size: 60px 60px, 80px 80px;
    opacity: 0.6;
    pointer-events: none;
}
.paq-landscape-hero__water {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(to bottom, transparent, rgba(212, 165, 42, 0.12), rgba(212, 165, 42, 0.25));
    pointer-events: none;
    z-index: 2;
}
.paq-landscape-hero__lotus { z-index: 2; }
.paq-landscape-hero__center { z-index: 3; }
.paq-landscape-hero__lotus {
    position: absolute;
    pointer-events: none;
    color: #fff;
    filter: drop-shadow(0 8px 20px rgba(212, 165, 42, 0.35));
}
.paq-landscape-hero__lotus--1 { width: 110px; height: 110px; left: 10%; bottom: 18%; opacity: 0.9; animation: lotus-float 7s ease-in-out infinite; }
.paq-landscape-hero__lotus--2 { width: 80px;  height: 80px;  left: 28%; bottom: 8%;  opacity: 0.7; animation: lotus-float 9s ease-in-out infinite 1s; }
.paq-landscape-hero__lotus--3 { width: 130px; height: 130px; right: 12%; bottom: 22%; opacity: 0.95; animation: lotus-float 8s ease-in-out infinite 0.5s; }
.paq-landscape-hero__lotus--4 { width: 70px;  height: 70px;  right: 32%; bottom: 6%;  opacity: 0.6; animation: lotus-float 6s ease-in-out infinite 1.5s; }
@keyframes lotus-float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-12px) rotate(2deg); }
}
.paq-landscape-hero__center {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 56px 24px 32px;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}
.paq-landscape-hero__logo {
    max-width: 180px;
    margin: 0 auto 24px;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(212, 165, 42, 0.3));
    animation: lotus-float 6s ease-in-out infinite;
}

/* Card flutuante sobre imagem (tipo /taro) */
.floating-image {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    isolation: isolate;
    display: block;
    width: 100%;
}
.floating-image > img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 540px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(46, 62, 30, 0.22);
}
.floating-image__card {
    position: absolute;
    bottom: -32px; right: -32px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 24px 28px;
    max-width: 320px;
    box-shadow: 0 20px 50px rgba(46, 62, 30, 0.18);
    border: 1px solid rgba(212, 165, 42, 0.3);
    z-index: 2;
}
.floating-image__card .lovable-card__kicker { margin-bottom: 6px; }
.floating-image__card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--green-dark);
    margin: 0 0 8px;
    line-height: 1.2;
}
.floating-image__card p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.92rem;
    line-height: 1.6;
    font-weight: 300;
}
.floating-image__badge-tl {
    position: absolute;
    top: -16px; left: -16px;
    background: linear-gradient(135deg, #e49e25, #fbc851);
    color: #fff;
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 14px 30px rgba(212, 165, 42, 0.4);
    z-index: 3;
    transform: rotate(-6deg);
    text-align: center;
    line-height: 1;
}
.floating-image__badge-tl strong { font-size: 1.6rem; font-weight: 700; display: block; }

@media (max-width: 768px) {
    .floating-image__card { position: static; max-width: 100%; margin-top: 16px; }
    .floating-image__badge-tl { top: -12px; left: 12px; width: 64px; height: 64px; font-size: 0.6rem; }
    .floating-image__badge-tl strong { font-size: 1.2rem; }
}

/* Especialidades — pills com ícone */
.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}
.specialty-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid rgba(212, 165, 42, 0.25);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(46, 62, 30, 0.06);
    transition: var(--transition);
}
.specialty-pill:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(212, 165, 42, 0.18);
}
.specialty-pill svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}
.specialty-pill span {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--green-dark);
}

/* Frame para mapa Google */
.map-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(46, 62, 30, 0.16), 0 0 0 1px rgba(212, 165, 42, 0.18) inset;
    isolation: isolate;
}
.map-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(212, 165, 42, 0.4);
    border-radius: 28px;
    pointer-events: none;
    z-index: 1;
}
.map-frame iframe {
    display: block;
    width: 100%;
    border-radius: 24px;
    filter: saturate(0.92) contrast(1.02);
}
.map-frame__cta {
    position: absolute;
    bottom: 18px; right: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: linear-gradient(135deg, #e49e25, #fbc851);
    color: #fff;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    box-shadow: 0 10px 26px rgba(212, 165, 42, 0.35);
    transition: var(--transition);
}
.map-frame__cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(212, 165, 42, 0.5); }

/* Modificador: hero com tag em pill verde (variação) */
.hero-label--moss {
    color: transparent;
    background: linear-gradient(135deg, #2e3e1e, #52683b, #40532d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card variante: vidro com borda dupla */
.lovable-card--glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 42, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 12px 40px rgba(46, 62, 30, 0.08);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.2vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 500; }

.section-title {
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.02rem;
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.gold-line {
    display: block;
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 14px auto 0;
    border-radius: 2px;
}

.highlight { color: var(--gold); font-style: italic; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(212,165,42,0.28);
    letter-spacing: 0.4px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,165,42,0.38);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.btn-outline {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.25);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--gold-dark);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ===== TOPBAR (oculta — visual Lovable não usa) ===== */
.topbar { display: none; }

/* ===== NAVBAR (Lovable: fixed, transparente com blur, sem accent) ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 165, 42, 0.12);
    box-shadow: 0 4px 30px rgba(46, 62, 30, 0.04);
    transition: padding 0.3s var(--ease);
}

.navbar-accent { display: none; }

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 16px;
}

.navbar.scrolled .container { padding-top: 6px; padding-bottom: 6px; }

.navbar-brand { display: flex; align-items: center; flex-shrink: 0; }
.navbar-brand:hover { opacity: 0.85; }

.navbar-logo {
    height: 56px;
    width: auto;
    transition: height 0.3s var(--ease);
}
.navbar.scrolled .navbar-logo { height: 46px; }

.nav-links { display: flex; gap: 28px; align-items: center; }

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
    background: linear-gradient(135deg, #e49e25, #fbc851) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 12px !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 0.78rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    margin-left: 8px;
    border: none;
    box-shadow: 0 6px 18px rgba(212, 165, 42, 0.25);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 165, 42, 0.4);
}

.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.mobile-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--green); border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   HERO (split com foto Juliana + ornamentos)
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 96px;
    background: #ffffff;
}

.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(to top, rgba(255,255,255,0.4), transparent 35%, rgba(255,255,255,0.3)),
        linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0.1) 100%);
}

.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(to top, rgba(255,255,255,0.4), transparent 35%, rgba(255,255,255,0.3)),
        linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0.1) 100%);
}

/* Decorações sutis (círculos blur) — substituem energy particles */
.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 1;
}
.hero-blur--gold {
    top: 18%; left: -120px;
    width: 480px; height: 480px;
    background: rgba(212, 165, 42, 0.18);
}
.hero-blur--sage {
    bottom: 12%; right: 60px;
    width: 320px; height: 320px;
    background: rgba(91, 109, 73, 0.18);
    animation-delay: 1.5s;
}

.energy-layer, .energy-particles { display: none; }

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.hero-text { max-width: 640px; }

/* Retrato Juliana com moldura orgânica + ornamentos */
.hero-portrait {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    aspect-ratio: 4 / 5;
}
.hero-portrait__frame {
    position: absolute; inset: 0;
    border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(46, 62, 30, 0.18), 0 0 0 1px rgba(212, 165, 42, 0.18);
    transform: rotate(-2deg);
    animation: portrait-float 8s ease-in-out infinite;
}
.hero-portrait__frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: rotate(2deg) scale(1.06);
}
@keyframes portrait-float {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50%      { transform: rotate(-1deg) translateY(-12px); }
}

/* Ornamento de pontos dourados ao redor */
.hero-portrait__dots {
    position: absolute;
    width: 110%; height: 110%;
    top: -5%; left: -5%;
    background-image: radial-gradient(circle, rgba(212, 165, 42, 0.4) 1.5px, transparent 1.8px);
    background-size: 24px 24px;
    mask: radial-gradient(circle at center, transparent 48%, #000 56%, #000 62%, transparent 70%);
    -webkit-mask: radial-gradient(circle at center, transparent 48%, #000 56%, #000 62%, transparent 70%);
    pointer-events: none;
    animation: dots-rotate 60s linear infinite;
}
@keyframes dots-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Badge "37 anos" sobre a foto */
.hero-portrait__badge {
    position: absolute;
    bottom: 8%; left: -8%;
    background: linear-gradient(135deg, #e49e25, #fbc851);
    color: #fff;
    padding: 14px 22px 14px 22px;
    border-radius: 18px 22px 16px 24px;
    box-shadow: 0 16px 40px rgba(212, 165, 42, 0.35);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.2;
    text-align: center;
    z-index: 3;
    transform: rotate(-4deg);
}
.hero-portrait__badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    font-style: normal;
}

/* Ornamento de folhas/símbolo no canto superior direito da foto */
.hero-portrait__leaf {
    position: absolute;
    top: -16px; right: -16px;
    width: 80px; height: 80px;
    z-index: 4;
    color: var(--green);
    opacity: 0.7;
    animation: portrait-float 6s ease-in-out infinite reverse;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    background: linear-gradient(135deg, #b67020, #fac038, #e49e25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    font-style: normal;
    color: transparent;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 7vw, 5.6rem);
    font-weight: 300;
    color: var(--green-dark);
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-text h1 .highlight,
.hero-text h1 .gold-italic {
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, #b67020, #fac038, #e49e25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-text h1 .subline {
    display: block;
    margin-top: 14px;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.2rem, 2.4vw, 1.9rem);
    color: rgba(79, 98, 56, 0.78);
    line-height: 1.4;
}

.hero-description {
    color: var(--text-medium);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image { display: none; }

/* Mobile: empilhar hero, foto menor */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-portrait { max-width: 320px; margin: 0 auto; }
    .hero-portrait__badge { font-size: 0.78rem; padding: 10px 16px; }
    .hero-portrait__badge strong { font-size: 1.6rem; }
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(79, 98, 56, 0.25);
    background: transparent;
    color: var(--green);
    transition: var(--transition);
    letter-spacing: 0.04em;
}

.btn-outline-dark:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    transform: translateY(-2px);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold-dark);
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212,165,42,0.25);
}

/* ===== QUICK NAV CARDS ===== */
.quick-nav {
    position: relative;
    z-index: 3;
    margin-top: -60px;
    padding-bottom: 40px;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.quick-nav-card {
    background: var(--white);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border-right: 1px solid rgba(79,98,56,0.08);
    position: relative;
}

.quick-nav-card:last-child { border-right: none; }

.quick-nav-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
}

.quick-nav-card:hover::after { transform: scaleX(1); }

.quick-nav-card:hover {
    background: var(--off-white);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 1;
}

.quick-nav-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--green-light), var(--green-dark));
    border-radius: 50%;
    color: var(--white);
}

.quick-nav-icon svg {
    width: 26px; height: 26px;
    stroke: var(--white);
}

.quick-nav-img {
    width: 100%;
    height: 180px;
    margin-bottom: 16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.quick-nav-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.4s var(--ease);
}

.quick-nav-card:hover .quick-nav-img img {
    transform: scale(1.08);
}

.quick-nav-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.quick-nav-card p {
    font-size: 0.88rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 12px;
}

.quick-nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.quick-nav-card:hover .quick-nav-link {
    color: var(--green-dark);
    letter-spacing: 1px;
}

/* ===== PAGE HERO ===== */
.page-hero {
    min-height: 60vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; text-align: center; overflow: hidden;
    padding-top: 96px;
    background: radial-gradient(ellipse at top left, #f5f7f2, #fff 55%, #fdf9f2);
}

.page-hero-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.45; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(255,255,255,0.55), rgba(255,255,255,0.85)),
        radial-gradient(ellipse at top, rgba(253,250,242,0.4), transparent 70%);
}

.page-hero::before,
.page-hero::after {
    content: ''; position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 1;
}
.page-hero::before { width: 380px; height: 380px; top: 18%; left: -120px; background: rgba(212,165,42,0.18); }
.page-hero::after  { width: 280px; height: 280px; bottom: 14%; right: 40px; background: rgba(91,109,73,0.16); }

.page-hero-content {
    position: relative; z-index: 2;
    padding: 56px 24px 32px;
    max-width: 860px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    font-weight: 300;
    color: var(--green-dark);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
}

.page-hero-content p {
    color: var(--text-medium);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    font-weight: 300;
    line-height: 1.7;
}

.page-hero-content .gold-line { margin: 18px auto 24px; }

/* ===== ABOUT ===== */
.about {
    padding: 60px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-image { position: relative; }

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image-wrapper img {
    width: 100%; height: 380px;
    object-fit: cover; object-position: center 20%;
    border-radius: var(--radius-lg);
    transition: transform 0.6s var(--ease);
}

.about-image-wrapper:hover img { transform: scale(1.03); }

.about-image-secondary {
    position: absolute; bottom: -36px; left: -36px;
    width: 180px; height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
    z-index: 2;
}

.about-image-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
    position: absolute; top: -16px; right: -16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 3;
}

.about-badge .number { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; display: block; line-height: 1.1; }
.about-badge .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.85; margin-top: 2px; display: block; }

.about-content h2 {
    text-align: left;
    margin-bottom: 10px;
    color: var(--gold-dark);
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    letter-spacing: -0.02em;
}

.about-content .gold-line { margin: 0 0 14px; width: 40px; }

.about-text {
    color: var(--text-medium);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.about-feature {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px solid rgba(79,98,56,0.06);
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.about-feature:hover {
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79,98,56,0.1);
}

.about-feature svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.about-feature span { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }

.about-cta { margin-top: 24px; }

/* ===== SERVICES CATEGORIES ===== */
.services-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(79,98,56,0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.service-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(79,98,56,0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    stroke: var(--white);
}

.service-category h3 {
    color: var(--gold-dark);
    margin-bottom: 16px;
    font-size: 1.15rem;
}

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

.service-list li {
    padding: 8px 0;
    color: var(--text-medium);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(79,98,56,0.06);
}

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

/* ===== SERVICES DETAIL GRID ===== */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    border: 1px solid rgba(79,98,56,0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: var(--transition);
    overflow: hidden;
}

.service-detail-card .service-detail-body {
    padding: 24px;
}

.service-detail-card .service-detail-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.service-detail-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 16px;
}

.service-detail-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
    stroke: var(--white);
}

.service-detail-card h3 {
    color: var(--gold-dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-detail-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== SERVICES CAROUSEL ===== */
.services {
    padding: 60px 0;
    background: var(--off-white);
}

.carousel { position: relative; display: flex; align-items: center; gap: 14px; }

.carousel-track-wrapper { overflow: hidden; border-radius: var(--radius-lg); flex: 1; }

.carousel-track {
    display: flex; gap: 18px;
    transition: transform 0.5s var(--ease);
    will-change: transform;
}

.carousel-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--cream);
    background: var(--white);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    flex-shrink: 0; z-index: 2;
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.carousel-btn svg { width: 18px; height: 18px; color: var(--gold); transition: var(--transition); }
.carousel-btn:hover svg { color: var(--white); }

.svc {
    min-width: calc(33.333% - 12px);
    height: 300px;
    border-radius: var(--radius-lg);
    background-size: cover; background-position: center;
    position: relative; overflow: hidden;
    display: block; flex-shrink: 0; cursor: pointer;
    box-shadow: var(--shadow);
}

.svc-overlay {
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top,
        rgba(45,42,38,0.85) 0%,
        rgba(45,42,38,0.3) 45%,
        transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px;
    transition: var(--transition);
}

.svc:hover .svc-overlay {
    background: linear-gradient(to top,
        rgba(45,42,38,0.9) 0%,
        rgba(45,42,38,0.5) 50%,
        rgba(0,0,0,0.15) 100%);
}

.svc-cat {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--white);
    padding: 4px 12px; border-radius: var(--radius-full);
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase;
    margin-bottom: 8px; width: fit-content;
}

.svc-cat.cat-auto { background: linear-gradient(135deg, #9B8AFF, #7B68EE); }
.svc-cat.cat-despertar { background: linear-gradient(135deg, #3DD6C6, #20B2AA); }

.svc-overlay h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; transition: var(--transition); }

.svc-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.83rem; line-height: 1.5;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: all 0.4s ease;
}

.svc:hover .svc-overlay p { max-height: 80px; opacity: 1; margin-top: 4px; }
.svc:hover .svc-overlay h3 { color: var(--gold-light); }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }

.carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--cream); border: none;
    cursor: pointer; transition: var(--transition);
    opacity: 0.5; padding: 0;
}

.carousel-dot.active {
    opacity: 1;
    background: var(--gold);
    transform: scale(1.3);
}

/* ===== PAQ ===== */
.paq {
    padding: 60px 0;
    position: relative; overflow: hidden;
}

.paq-bg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; z-index: 0;
}

.paq-bg img { width: 100%; height: 100%; object-fit: cover; }

.paq-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(160deg,
        rgba(253,250,244,0.92) 0%,
        rgba(245,240,224,0.88) 50%,
        rgba(253,250,244,0.9) 100%);
}

.paq .container { position: relative; z-index: 2; }

.paq-content { max-width: 760px; margin: 0 auto; text-align: center; }

.paq-title-big {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.paq-full-name {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 36px;
    font-weight: 400;
}

.paq-description {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 44px;
}

.paq-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 44px;
}

.paq-benefit {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(79,98,56,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 22px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.paq-benefit:hover {
    background: rgba(255,255,255,0.9);
    border-color: var(--gold-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.paq-benefit svg { width: 34px; height: 34px; color: var(--gold); margin-bottom: 14px; }
.paq-benefit h4 { color: var(--text-dark); font-size: 1.05rem; margin-bottom: 8px; }
.paq-benefit p { color: var(--text-medium); font-size: 0.88rem; line-height: 1.6; }

/* ===== PAQ GALLERY ===== */
.paq-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.paq-gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(79,98,56,0.12);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.paq-gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.paq-gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== TESTIMONIALS ===== */
/* ===== COMO FUNCIONA ===== */
.how-it-works {
    padding: 60px 0;
    background: var(--white);
}

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

.step-card {
    text-align: center;
    padding: 32px 20px;
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(79,98,56,0.15);
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(79,98,56,0.18);
    position: absolute;
    top: 12px;
    right: 18px;
    line-height: 1;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.step-card h3 {
    color: var(--gold-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.testimonials {
    padding: var(--section-py) 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid rgba(79,98,56,0.15);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79,98,56,0.12);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: -10px;
    opacity: 0.35;
}

.testimonial-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }

.testimonial-text {
    color: var(--text-medium);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--cream);
}

.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700; font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-author-info .name { font-weight: 600; font-size: 0.93rem; color: var(--text-dark); }
.testimonial-author-info .role { font-size: 0.78rem; color: var(--text-light); }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 72px 0;
    background: var(--gold-dark);
    text-align: center;
    position: relative; overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute; top: -30%; right: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner h2 { color: var(--white); margin-bottom: 10px; position: relative; z-index: 1; }

.cta-banner p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    font-size: 1.02rem;
    position: relative; z-index: 1;
}

.cta-banner .btn,
.cta-banner .btn-white {
    background: var(--white);
    color: var(--gold-dark);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    font-weight: 700;
    position: relative; z-index: 1;
}

.cta-banner .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ===== TAROT ===== */
.tarot { padding: var(--section-py) 0; background: var(--off-white); }

.tarot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.tarot-content h2 { text-align: left; color: var(--gold-dark); }
.juliana-name { font-family: var(--font-heading); font-size: 3rem; font-weight: 500; font-style: italic; letter-spacing: 1px; }
.tarot-content .gold-line { margin: 14px 0 0; }

.tarot-text { color: var(--text-medium); font-size: 1.02rem; margin: 28px 0; line-height: 1.9; }

.tarot-highlights { display: flex; flex-direction: column; gap: 12px; }

.tarot-highlight {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 18px;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px solid rgba(79,98,56,0.06);
    transition: var(--transition);
}

.tarot-highlight:hover {
    border-color: var(--gold-light);
    transform: translateX(4px);
}

.tarot-highlight svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.tarot-highlight p { color: var(--text-medium); font-size: 0.93rem; line-height: 1.6; }
.tarot-highlight strong { color: var(--text-dark); }

.tarot-visual { position: relative; display: flex; align-items: center; justify-content: center; }

.tarot-image-wrapper {
    width: 100%; max-width: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tarot-image-wrapper img {
    width: 100%; height: 480px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.tarot-image-wrapper:hover img { transform: scale(1.03); }

/* ===== GALLERY ===== */
.gallery { padding: var(--section-py) 0; background: var(--off-white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 14px;
}

.gallery-item {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; cursor: pointer;
    height: 100%; min-height: 260px;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    transition: transform 0.6s var(--ease);
}

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

.gallery-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 40px 20px 18px;
    background: linear-gradient(to top, rgba(45,42,38,0.6), transparent);
    opacity: 0; transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 0.9rem; }

/* ===== MVV ===== */
.mvv { padding: 80px 0; background: var(--off-white); }

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

.mvv-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 28px;
    text-align: center;
    border: 1px solid rgba(79,98,56,0.06);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(79,98,56,0.12);
}

.mvv-card svg { width: 44px; height: 44px; color: var(--gold); margin-bottom: 18px; }
.mvv-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--gold-dark); }
.mvv-card p { color: var(--text-medium); line-height: 1.8; font-size: 0.93rem; }

/* ===== SERVICES DETAIL ===== */
.services-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.category-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    text-align: center;
    margin: 0 0 32px;
    color: var(--gold-dark);
}

.category-title span { color: var(--gold-light); }

.svc-detail {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(79,98,56,0.05);
}

.svc-detail:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79,98,56,0.12);
}

.svc-detail-img { height: 190px; overflow: hidden; }

.svc-detail-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.svc-detail:hover .svc-detail-img img { transform: scale(1.06); }

.svc-detail-body { padding: 24px; }
.svc-detail-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.svc-detail-body p { color: var(--text-medium); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }

.svc-detail-body .svc-tag {
    display: inline-block; padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px;
    color: var(--white); margin-bottom: 12px;
}

.svc-tag-energia { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.svc-tag-auto { background: linear-gradient(135deg, #9B8AFF, #7B68EE); }
.svc-tag-despertar { background: linear-gradient(135deg, #3DD6C6, #20B2AA); }

.service-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gold); font-weight: 600; font-size: 0.88rem;
    transition: var(--transition);
}

.service-card-link:hover { color: var(--gold-dark); gap: 10px; }
.service-card-link svg { color: var(--gold); transition: var(--transition); }

/* ===== PARTNERS ===== */
.partners-section { padding: 80px 0; background: var(--off-white); }

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

.partner-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(79,98,56,0.15);
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79,98,56,0.1);
}

.partner-photo { width: 100%; height: 260px; overflow: hidden; }

.partner-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    transition: transform 0.6s var(--ease);
}

.partner-card:hover .partner-photo img { transform: scale(1.04); }

.partner-body { padding: 24px; }
.partner-body h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 4px; }
.partner-role { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 14px; display: block; }
.partner-body p { color: var(--text-medium); font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }

.partner-services { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 18px; }

.partner-service-tag {
    padding: 4px 14px;
    background: var(--off-white);
    border: 1px solid rgba(79,98,56,0.08);
    border-radius: var(--radius-full);
    font-size: 0.76rem; font-weight: 600;
    color: var(--gold-dark);
}

.partner-contact {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gold); font-weight: 600; font-size: 0.88rem;
    transition: var(--transition);
}

.partner-contact:hover { color: var(--gold-dark); gap: 10px; }
.partner-contact svg { width: 16px; height: 16px; }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 48px 0;
    background: var(--white);
}

.cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-text h3 {
    color: var(--gold-dark);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.cta-text p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-whatsapp svg {
    stroke: currentColor;
}

/* ===== CONTACT ===== */
.contact { padding: var(--section-py) 0; background: var(--white); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.contact-info h2 { text-align: left; margin-bottom: 14px; color: var(--gold-dark); }
.contact-info .gold-line { margin: 0 0 24px; }

.contact-info-text,
.contact-info > p {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.85;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item { display: flex; align-items: center; gap: 14px; }

.contact-item-icon,
.contact-icon {
    width: 48px; height: 48px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid rgba(79,98,56,0.08);
    box-shadow: var(--shadow-sm);
}

.contact-item:hover .contact-item-icon,
.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
}

.contact-item-icon svg,
.contact-icon svg { width: 20px; height: 20px; color: var(--gold); transition: var(--transition); }

.contact-item:hover .contact-item-icon svg,
.contact-item:hover .contact-icon svg { color: var(--white); }

.contact-item-text .label,
.contact-text strong {
    font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-light);
    margin-bottom: 2px; display: block; font-weight: 600;
}

.contact-item-text .value,
.contact-text a,
.contact-text span {
    font-weight: 600; color: var(--text-dark);
    font-size: 1rem; display: block; margin-top: 2px;
}

.contact-text a:hover { color: var(--gold); }

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(79,98,56,0.06);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    border: 1px solid rgba(79, 98, 56, 0.18);
    border-radius: 12px;
    background: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
    width: 100%;
    border-radius: var(--radius);
    font-size: 0.93rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212,165,42,0.12);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); opacity: 0.5; }

.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.btn-submit { width: 100%; justify-content: center; padding: 15px 32px; font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(160deg, var(--green-dark), #232c15);
    border-top: 3px solid var(--gold);
    color: rgba(255,255,255,0.72);
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { margin-bottom: 18px; }
.footer-logo { height: 100px; width: auto; filter: brightness(0) invert(1); }
.footer-about p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; color: rgba(255,255,255,0.6); }

.footer-social { display: flex; gap: 8px; }

.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-social a svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
.footer-social a:hover svg { color: var(--white); }

.footer h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 18px;
    font-family: var(--font-body);
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 24px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
    font-size: 0.88rem; color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-links a:hover { color: var(--gold-light); transform: translateX(3px); }

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.footer-dev { margin-top: 4px; font-size: 0.78rem; }
.footer-dev strong { color: var(--gold-light); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

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

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
    50% { box-shadow: 0 4px 16px rgba(37,211,102,0.3), 0 0 0 10px rgba(37,211,102,0.06); }
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s var(--ease); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s var(--ease); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root { --section-py: 80px; }
    .topbar-left { display: none; }
    .topbar-right { justify-content: center; width: 100%; }
    .navbar { top: 30px; }
    .navbar-logo { height: 65px; }
    .navbar.scrolled .navbar-logo { height: 48px; }
    .nav-links a { padding: 8px 14px; font-size: 0.85rem; }
    .nav-cta { padding: 10px 20px !important; font-size: 0.85rem !important; margin-left: 10px; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-grid { gap: 20px; }
    .hero-text { padding-bottom: 60px; }
    .hero-image img { max-height: 65vh; }
    .quick-nav { margin-top: -50px; }
    .quick-nav-card { padding: 28px 20px; }
    .about-grid, .tarot-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
    .services-categories { grid-template-columns: 1fr 1fr; }
    .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
    .paq-gallery { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .svc { min-width: calc(50% - 10px); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .paq-benefits { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 220px); }
    .services-full-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .mvv-grid { grid-template-columns: repeat(2, 1fr); }
    .mvv-grid .mvv-card:last-child { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; }
}

@media (max-width: 768px) {
    :root { --section-py: 60px; }
    .topbar { display: none; }
    .navbar { top: 0; }
    .navbar-accent { height: 3px; }
    .navbar .container { padding-top: 8px; padding-bottom: 8px; }
    .navbar.scrolled .container { padding-top: 5px; padding-bottom: 5px; }
    .navbar-logo { height: 55px; }
    .navbar.scrolled .navbar-logo { height: 42px; }

    .nav-links {
        display: none; position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 20px; z-index: 999;
    }

    .nav-links.active { display: flex; }

    .nav-links a {
        font-size: 1.1rem;
        color: var(--text-dark) !important;
        background: transparent !important;
        padding: 12px 24px;
    }

    .nav-cta { margin-left: 0 !important; margin-top: 10px; }

    .mobile-toggle { display: flex; z-index: 1000; }
    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { min-height: auto; }
    .hero-content { min-height: auto; padding-top: 100px; padding-bottom: 0; }
    .hero-overlay { background: rgba(253,250,244,0.85); }
    .hero-grid { grid-template-columns: 1fr; gap: 20px; min-height: auto; }
    .hero-text { max-width: 100%; text-align: center; padding-bottom: 30px; }
    .hero-text h1 { font-size: 1.9rem; }
    .hero-label { text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-image { justify-content: center; }
    .hero-image img { max-height: 50vh; }
    .quick-nav { margin-top: -40px; }
    .quick-nav-grid { grid-template-columns: 1fr; }
    .quick-nav-card { border-right: none; border-bottom: 1px solid rgba(79,98,56,0.08); }
    .quick-nav-card:last-child { border-bottom: none; }

    .svc { min-width: 100%; height: 260px; }
    .carousel-btn { width: 36px; height: 36px; }
    .carousel-btn svg { width: 16px; height: 16px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .paq-benefits { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer h4::after { left: 50%; transform: translateX(-50%); }
    .footer h4, .footer-links { text-align: center; }
    .footer-social { justify-content: center; }
    .footer-about p, .footer-brand { text-align: center; }
    .footer-logo { margin: 0 auto; }

    .about-image-secondary { width: 140px; height: 140px; bottom: -18px; left: -8px; }
    .about-badge { top: -10px; right: 10px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .about-features { grid-template-columns: 1fr; }
    .services-categories { grid-template-columns: 1fr; }
    .services-detail-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .paq-gallery { grid-template-columns: 1fr; }
    .cta-bar { flex-direction: column; text-align: center; }

    .about-content h2, .contact-info h2, .tarot-content h2 { text-align: center; }
    .about-content .gold-line, .contact-info .gold-line, .tarot-content .gold-line { margin: 14px auto 0; }

    .tarot-visual { order: -1; }
    .tarot-image-wrapper img { height: 320px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); }

    .services-full-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .mvv-grid { grid-template-columns: 1fr; }
    .mvv-grid .mvv-card:last-child { max-width: 100%; }
    .page-hero { min-height: 38vh; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .testimonial-card { padding: 28px 20px; }
    .contact-form-wrapper { padding: 28px 18px; }
    .hero-logo { height: 100px; }
    .hero-content { padding: 0 16px; }
    .paq-title-big { letter-spacing: 4px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
    .mvv-card { padding: 28px 20px; }
    .partner-body { padding: 20px 16px; }
}

/* ===== HISTORIA SPIRAL BG ===== */
.historia-spiral {
    position: absolute;
    border-radius: 50%;
    border: 2.5px solid transparent;
    pointer-events: none;
    z-index: 0;
    animation: spiral-breathe 8s ease-in-out infinite;
}

.historia-spiral::before,
.historia-spiral::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(212,165,42,0.18);
}

.historia-spiral-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    border-color: rgba(212,165,42,0.22);
    background: radial-gradient(circle, rgba(212,165,42,0.1) 0%, transparent 70%);
}

.historia-spiral-1::before {
    width: 380px;
    height: 380px;
    top: 60px;
    left: 60px;
    border-color: rgba(79,98,56,0.15);
    animation: spiral-breathe 6s ease-in-out infinite 2s;
}

.historia-spiral-1::after {
    width: 260px;
    height: 260px;
    top: 120px;
    left: 120px;
    border-color: rgba(212,165,42,0.18);
    animation: spiral-breathe 7s ease-in-out infinite 4s;
}

.historia-spiral-2 {
    width: 400px;
    height: 400px;
    bottom: -120px;
    left: -120px;
    border-color: rgba(79,98,56,0.18);
    background: radial-gradient(circle, rgba(79,98,56,0.06) 0%, transparent 70%);
    animation: spiral-breathe 10s ease-in-out infinite 1s;
}

.historia-spiral-2::before {
    width: 300px;
    height: 300px;
    top: 50px;
    left: 50px;
    border-color: rgba(212,165,42,0.18);
    animation: spiral-breathe 7s ease-in-out infinite 3s;
}

.historia-spiral-2::after {
    width: 200px;
    height: 200px;
    top: 100px;
    left: 100px;
    border-color: rgba(79,98,56,0.1);
    animation: spiral-breathe 6s ease-in-out infinite 5s;
}

@keyframes spiral-breathe {
    0%, 100% { opacity: 0; transform: scale(0.6); }
    50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .historia-spiral-1 { width: 300px; height: 300px; top: -80px; right: -80px; }
    .historia-spiral-2 { width: 250px; height: 250px; bottom: -80px; left: -80px; }
}

/* ===== JULIANA SECTION - ENERGY ORBS BG ===== */
.juliana-bg-effects {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.energy-orb {
    position: absolute;
    display: block;
    border-radius: 50%;
    animation: orb-float ease-in-out infinite;
}

.energy-orb:nth-child(1) {
    width: 200px; height: 200px;
    top: 10%; left: 5%;
    background: radial-gradient(circle, rgba(212,165,42,0.25) 0%, rgba(212,165,42,0.1) 50%, transparent 70%);
    box-shadow: 0 0 60px rgba(212,165,42,0.18);
    animation-duration: 14s;
}

.energy-orb:nth-child(2) {
    width: 280px; height: 280px;
    top: 50%; right: 3%;
    background: radial-gradient(circle, rgba(79,98,56,0.2) 0%, rgba(79,98,56,0.06) 50%, transparent 70%);
    box-shadow: 0 0 80px rgba(79,98,56,0.12);
    animation-duration: 18s;
    animation-delay: 2s;
}

.energy-orb:nth-child(3) {
    width: 150px; height: 150px;
    top: 25%; left: 40%;
    background: radial-gradient(circle, rgba(236,187,116,0.3) 0%, rgba(236,187,116,0.08) 50%, transparent 70%);
    box-shadow: 0 0 50px rgba(236,187,116,0.15);
    animation-duration: 12s;
    animation-delay: 1s;
}

.energy-orb:nth-child(4) {
    width: 240px; height: 240px;
    bottom: 5%; left: 15%;
    background: radial-gradient(circle, rgba(79,98,56,0.22) 0%, rgba(79,98,56,0.06) 50%, transparent 70%);
    box-shadow: 0 0 70px rgba(79,98,56,0.12);
    animation-duration: 20s;
    animation-delay: 3s;
}

.energy-orb:nth-child(5) {
    width: 170px; height: 170px;
    top: 5%; right: 20%;
    background: radial-gradient(circle, rgba(212,165,42,0.25) 0%, rgba(212,165,42,0.1) 50%, transparent 70%);
    box-shadow: 0 0 60px rgba(212,165,42,0.18);
    animation-duration: 15s;
    animation-delay: 4s;
}

.energy-orb:nth-child(6) {
    width: 220px; height: 220px;
    top: 45%; left: 8%;
    background: radial-gradient(circle, rgba(236,187,116,0.25) 0%, rgba(236,187,116,0.08) 50%, transparent 70%);
    box-shadow: 0 0 70px rgba(236,187,116,0.15);
    animation-duration: 16s;
    animation-delay: 1.5s;
}

.energy-orb:nth-child(7) {
    width: 160px; height: 160px;
    bottom: 15%; right: 25%;
    background: radial-gradient(circle, rgba(79,98,56,0.25) 0%, rgba(79,98,56,0.08) 50%, transparent 70%);
    box-shadow: 0 0 50px rgba(79,98,56,0.15);
    animation-duration: 13s;
    animation-delay: 5s;
}

.energy-orb:nth-child(8) {
    width: 260px; height: 260px;
    top: 10%; right: 5%;
    background: radial-gradient(circle, rgba(212,165,42,0.22) 0%, rgba(212,165,42,0.08) 50%, transparent 70%);
    box-shadow: 0 0 80px rgba(212,165,42,0.18);
    animation-duration: 22s;
    animation-delay: 2.5s;
}

@keyframes orb-float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(15px, -20px) scale(1.05);
    }
    50% {
        transform: translate(-10px, -35px) scale(0.95);
    }
    75% {
        transform: translate(20px, -15px) scale(1.08);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

.energy-orb {
    opacity: 0.7;
}

/* ===== SERVICOS BG IMAGE ===== */
.servicos-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.07;
}

/* ===== FAQ ACCORDION ===== */
.faq-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 400px !important; }

/* ===== ESCONDER EFEITOS PESADOS DO TEMA ANTIGO ===== */
.historia-spiral,
.juliana-bg-effects,
.energy-orb { display: none !important; }

/* ============================================================
   LOVABLE — SECTIONS & LAYOUT (overhaul leveza)
   ============================================================ */
.section {
    padding: clamp(72px, 10vw, 120px) 0;
    position: relative;
    overflow: hidden;
}
.section--white   { background: #ffffff; }
.section--airy    { background: radial-gradient(ellipse at top left, #f5f7f2, #fff 55%, #fdf9f2); }
.section--cream   { background: radial-gradient(ellipse at top, #fdfaf2, #ffffff, #fdf9f2); }
.section--sage    { background: linear-gradient(135deg, #475b33, #303d1d); color: #fff; }

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}
.section-head .tag-decorative { margin-bottom: 16px; }

.section-lead {
    color: var(--text-medium);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-weight: 300;
    line-height: 1.75;
    margin-top: 18px;
}

.section-footer {
    text-align: center;
    margin-top: 56px;
}

.lovable-h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 300;
    color: var(--green-dark);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
}
.lovable-h2--center { text-align: center; }

.gold-italic {
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, #b67020, #fac038, #e49e25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Grid 2 colunas para "Quem é Juliana" */
.lovable-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.lovable-grid__media { position: relative; }

.lovable-photo {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    isolation: isolate;
}
.lovable-photo > img,
.lovable-photo > picture {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 24px 60px rgba(46, 62, 30, 0.18), 0 0 0 1px rgba(212, 165, 42, 0.18) inset;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    background: #f1f4ec;
}
.lovable-photo:hover > img,
.lovable-photo:hover > picture {
    transform: translateY(-4px);
    box-shadow: 0 32px 70px rgba(46, 62, 30, 0.22), 0 0 0 1px rgba(212, 165, 42, 0.4) inset;
}

/* Frame externo dourado com gap (tipo passe-partout) */
.lovable-photo::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(212, 165, 42, 0.45);
    border-radius: 28px;
    pointer-events: none;
    z-index: 1;
    transition: inset 0.5s ease, border-color 0.5s ease;
}
.lovable-photo:hover::before {
    inset: -14px;
    border-color: rgba(212, 165, 42, 0.7);
}

/* Glow dourado pulsante atrás da foto */
.lovable-photo::after {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at center, rgba(212, 165, 42, 0.18) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: photo-glow 6s ease-in-out infinite;
}
@keyframes photo-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 0.9; transform: scale(1.04); }
}

/* Cantos ornamentais SVG (visíveis quando há .lovable-photo__corner) */
.lovable-photo__corner {
    position: absolute;
    width: 36px; height: 36px;
    color: var(--gold);
    z-index: 3;
    pointer-events: none;
    opacity: 0.85;
    filter: drop-shadow(0 4px 8px rgba(212, 165, 42, 0.4));
}
.lovable-photo__corner--tl { top: -14px; left: -14px; }
.lovable-photo__corner--tr { top: -14px; right: -14px; transform: rotate(90deg); }
.lovable-photo__corner--bl { bottom: -14px; left: -14px; transform: rotate(-90deg); }
.lovable-photo__corner--br { bottom: -14px; right: -14px; transform: rotate(180deg); }

/* Cards flutuantes ao redor da foto */
.lovable-photo__float {
    position: absolute;
    z-index: 4;
    background: #ffffff;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(46, 62, 30, 0.16);
    border: 1px solid rgba(212, 165, 42, 0.3);
    text-align: center;
    min-width: 130px;
}
.lovable-photo__float .kicker {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    margin-bottom: 4px;
}
.lovable-photo__float .label {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--green-dark);
    line-height: 1.2;
}
.lovable-photo__float--tl {
    top: 8%; left: -10%;
    animation: float-tl 6s ease-in-out infinite;
}
.lovable-photo__float--br {
    bottom: 8%; right: -10%;
    animation: float-br 6s ease-in-out infinite 1s;
}
@keyframes float-tl {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50%      { transform: rotate(-3deg) translateY(-8px); }
}
@keyframes float-br {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50%      { transform: rotate(3deg) translateY(-8px); }
}

@media (max-width: 768px) {
    .lovable-photo__float { min-width: 100px; padding: 8px 12px; }
    .lovable-photo__float .label { font-size: 0.85rem; }
    .lovable-photo__float--tl { left: 4%; }
    .lovable-photo__float--br { right: 4%; }
}

/* Variantes */
.lovable-photo--circle > img,
.lovable-photo--circle > picture { border-radius: 50%; aspect-ratio: 1 / 1; }
.lovable-photo--circle::before { border-radius: 50%; }

.lovable-photo--no-frame::before,
.lovable-photo--no-frame::after { display: none; }

.lovable-photo--organic > img {
    border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
}
.lovable-photo--organic::before { display: none; }
.lovable-photo__badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(46, 62, 30, 0.16);
    border: 1px solid rgba(212, 165, 42, 0.25);
}
.lovable-photo__badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(135deg, #b67020, #fac038, #e49e25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.lovable-photo__badge span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--green);
    margin-top: 4px;
    font-weight: 600;
}

.lovable-prose {
    margin-top: 28px;
    color: var(--text-medium);
    font-size: 1.02rem;
    line-height: 1.85;
    font-weight: 300;
}
.lovable-prose p + p { margin-top: 16px; }
.lovable-prose strong { color: var(--text-dark); font-weight: 600; }

.lovable-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
}
.lovable-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.lovable-feature__icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--sage-light);
    border: 1px solid rgba(79, 98, 56, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}
.lovable-feature__icon svg { width: 20px; height: 20px; }
.lovable-feature__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}
.lovable-feature__text {
    font-size: 0.92rem;
    color: var(--text-medium);
    margin: 2px 0 0;
    line-height: 1.6;
}

/* Cards Lovable */
.lovable-cards {
    display: grid;
    gap: 28px;
}
.lovable-cards--2 { grid-template-columns: repeat(2, 1fr); }
.lovable-cards--3 { grid-template-columns: repeat(3, 1fr); }
.lovable-cards--4 { grid-template-columns: repeat(4, 1fr); }

.lovable-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 30px;
    border: 1px solid rgba(79, 98, 56, 0.1);
    box-shadow: 0 4px 30px rgba(46, 62, 30, 0.05);
    transition: var(--transition);
    text-align: left;
}
.section--cream .lovable-card { background: #ffffff; }
.section--airy .lovable-card  { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(6px); }

.lovable-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(46, 62, 30, 0.12);
    border-color: rgba(212, 165, 42, 0.3);
}

.lovable-card--bordered { border-top: 3px solid transparent; }
.lovable-card--bordered:hover {
    border-top-color: var(--gold);
}

/* Strip horizontal de fotos (bastidores) */
.lovable-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.lovable-strip__item {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(46, 62, 30, 0.08);
    transition: transform 0.4s ease;
    background: #f1f4ec;
}
.lovable-strip__item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.lovable-strip__item:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(46, 62, 30, 0.18); }
.lovable-strip__item:hover img { transform: scale(1.08); }
.lovable-strip__item:nth-child(even) { transform: translateY(20px); }
.lovable-strip__item:nth-child(even):hover { transform: translateY(14px); }

@media (max-width: 960px) {
    .lovable-strip { grid-template-columns: repeat(2, 1fr); }
    .lovable-strip__item:nth-child(even) { transform: none; }
    .lovable-strip__item:nth-child(even):hover { transform: translateY(-6px); }
}

/* Card com foto no topo */
.lovable-card--with-photo { padding: 0; overflow: hidden; }
.lovable-card--with-photo > *:not(.lovable-card__photo) {
    padding-left: 30px; padding-right: 30px;
}
.lovable-card--with-photo > .lovable-card__kicker { padding-top: 28px; margin-top: 4px; }
.lovable-card--with-photo > .lovable-list { padding-bottom: 10px; }
.lovable-card--with-photo > .lovable-card__cta { padding-bottom: 28px; }
.lovable-card__photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: #f1f4ec;
}
.lovable-card__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s ease;
}
.lovable-card__photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 50%, rgba(255,255,255,0.05) 100%);
}
.lovable-card--with-photo:hover .lovable-card__photo img { transform: scale(1.06); }

.lovable-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #faecd0, #fdfaf2);
    color: var(--gold-dark);
    margin-bottom: 20px;
    border: 1px solid rgba(212, 165, 42, 0.2);
}
.lovable-card__icon svg { width: 26px; height: 26px; }

.lovable-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--green-dark);
    margin: 0 0 10px;
    line-height: 1.2;
}
.lovable-card__kicker {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold-dark);
    margin: 0 0 8px;
}
.lovable-card__sub {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-medium);
    margin: 0 0 16px;
}
.lovable-card__body,
.lovable-card p {
    color: var(--text-medium);
    font-size: 0.96rem;
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
}

.lovable-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 22px;
}
.lovable-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--text-medium);
    font-size: 0.92rem;
    line-height: 1.65;
    font-weight: 300;
}
.lovable-list li::before {
    content: '✦';
    position: absolute;
    left: 0; top: 0;
    color: var(--gold);
    font-size: 0.8rem;
    line-height: 1.7;
}

.lovable-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 8px;
    transition: gap 0.2s ease;
}
.lovable-card__cta:hover {
    gap: 12px;
    color: var(--gold);
}

/* Testimonials */
.lovable-testimonial {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 36px;
    border: 1px solid rgba(212, 165, 42, 0.18);
    box-shadow: 0 8px 30px rgba(46, 62, 30, 0.06);
    position: relative;
}
.lovable-testimonial__quote {
    position: absolute;
    top: 12px; left: 24px;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    background: linear-gradient(135deg, #b67020, #fac038, #e49e25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    pointer-events: none;
}
.lovable-testimonial p {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    margin: 24px 0 20px;
}
.lovable-testimonial footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--font-body);
    color: var(--gold-dark);
    align-items: flex-start;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 165, 42, 0.18);
    margin-top: 8px;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e49e25, #fbc851);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 8px;
    box-shadow: 0 6px 16px rgba(212, 165, 42, 0.3);
}
.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green-dark);
    text-transform: none;
    letter-spacing: 0;
}
.testimonial-context {
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-dark);
    font-weight: 600;
}

/* CTA final escuro */
.cta-final {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding: 16px 0;
}
.cta-final .section-lead { font-weight: 300; }

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
    transition: var(--transition);
    letter-spacing: 0.04em;
}
.btn-outline-light:hover {
    background: #ffffff;
    color: var(--green-dark);
    border-color: #ffffff;
}

/* Responsive */
@media (max-width: 960px) {
    .lovable-grid { grid-template-columns: 1fr; gap: 40px; }
    .lovable-cards--2,
    .lovable-cards--3,
    .lovable-cards--4 { grid-template-columns: 1fr; }
    .lovable-photo img { aspect-ratio: 1 / 1; }
    .nav-links {
        position: fixed;
        top: 64px; right: 0;
        flex-direction: column;
        background: #ffffff;
        padding: 24px;
        gap: 16px;
        width: min(280px, 80%);
        height: calc(100vh - 64px);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
        align-items: flex-start;
    }
    .nav-links.show { transform: translateX(0); }
    .mobile-toggle { display: flex; }
    .nav-cta { margin-left: 0 !important; width: 100%; justify-content: center; }
    .hero-text h1 { font-size: clamp(2rem, 9vw, 3.4rem); }
    .hero-blur--gold { width: 280px; height: 280px; }
    .hero-blur--sage { display: none; }
}
