/* ============================================
   YULE — Landing Page
   Placeholders cinza para imagens (substituir)
   ============================================ */

:root {
    --color-cream: #F8F3EA;
    --color-cream-light: #F5F1EE;
    --color-bg: #FFFFFF;
    --color-gold: #B8864B;
    --color-gold-light: #C89968;
    --color-gold-soft: #D4A373;
    --color-brown: #A67C52;
    --color-text: #2D2D2D;
    --color-text-soft: #5A5A5A;
    --color-text-muted: #8B8B8B;
    --color-border: #E8E2D5;
    --color-placeholder: #D8D8D8;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-w: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}

/* ---- Placeholder para imagens ---- */
.placeholder-img {
    background: var(--color-placeholder);
    background-image:
        linear-gradient(135deg, transparent 45%, rgba(255,255,255,0.3) 50%, transparent 55%);
    background-size: 40px 40px;
    border-radius: 4px;
    display: block;
}

/* ---- Tipografia base ---- */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 500;
}

h2 {
    font-size: 40px;
    line-height: 1.2;
}

h3 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
}

p {
    color: var(--color-text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 22px;
}

.eyebrow.center {
    display: block;
    text-align: center;
    color: var(--color-gold);
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

/* ---- Botões ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 4px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-gold-light);
    color: #fff;
    border-color: var(--color-gold-light);
}

.btn-primary:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold-soft);
}

.btn-outline:hover {
    background: var(--color-cream);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 12px;
}

.btn-white {
    background: #fff;
    color: var(--color-brown);
    border-color: #fff;
}

.btn-white:hover {
    background: var(--color-cream-light);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
}

.icon-wa {
    display: inline-block;
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ---- HEADER ---- */
.header {
    background: var(--color-cream-light);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(184, 134, 75, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: inline-flex;
    align-items: center;
    height: 96px;
    flex-shrink: 0;
    text-decoration: none;
}

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

.nav {
    display: flex;
    gap: 36px;
}

.nav a {
    font-size: 13px;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
}

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

/* ---- HERO ---- */
.hero {
    background: var(--color-cream-light);
    padding: 60px 0 80px;
    overflow: hidden;
    position: relative;
}

.hero-harmony {
    background: #eedfd3 url("fundo-procedimento-bg.jpg") center / cover no-repeat;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}

.hero-content {
    padding-right: 0;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-lead {
    color: var(--color-gold);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 18px;
}

.hero-text {
    font-size: 13.5px;
    color: var(--color-text-soft);
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 560px;
    margin-top: -60px;
    margin-bottom: -80px;
}

.hero-img-placeholder,
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-img-placeholder {
    border-radius: 8px;
}

/* ---- BENEFITS ---- */
.benefits {
    background: var(--color-bg);
    padding: 50px 0;
    border-bottom: 1px solid var(--color-border);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit p {
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.45;
}

.benefit strong {
    font-weight: 500;
}

/* ---- PROTOCOLO ---- */
.protocolo {
    padding: 90px 0;
    background: var(--color-bg);
}

.protocolo-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.protocolo-content h2 {
    margin-bottom: 26px;
}

.protocolo-content p {
    margin-bottom: 18px;
}

.protocolo-content .highlight {
    color: var(--color-gold);
    font-weight: 500;
    margin-top: 28px;
}

.protocolo-img-placeholder,
.protocolo-img {
    width: 100%;
    height: 420px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ---- OFERTA · CARROSSEL DE PACOTES ---- */
.offer {
    padding: 80px 0;
    background: var(--color-cream-light);
}

.packs-slider {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 16px;
    margin-top: 40px;
}

.packs-viewport {
    overflow: hidden;
    flex: 1;
    padding: 8px 4px;
}

.packs-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    align-items: stretch;
}

.pack-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(168, 124, 82, 0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    box-sizing: border-box;
}

.pack-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(168, 124, 82, 0.12);
    border-color: var(--color-gold-soft);
}

.pack-featured {
    background: linear-gradient(180deg, #fff 0%, #fdfaf5 100%);
    border-color: var(--color-gold);
    box-shadow: 0 18px 44px rgba(184, 134, 75, 0.18);
    transform: scale(1.02);
}

.pack-featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pack-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--color-gold);
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.14em;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
}

.pack-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--color-gold);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}

.pack-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.25;
    margin: 0 0 8px;
}

.pack-sub {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0 0 24px;
    line-height: 1.5;
}

.pack-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.pack-card .price-value {
    font-size: 32px;
}

.pack-card .price-label {
    font-size: 10px;
}

.pack-card .price-sep {
    font-size: 14px;
}

.pack-btn {
    margin-top: auto;
    justify-content: center;
    width: 100%;
}

.packs-prev,
.packs-next {
    background: #fff;
}

.offer-card {
    display: none;
}

.offer-title {
    font-size: 30px;
    margin: 18px 0 36px;
    color: var(--color-text);
    font-family: var(--font-serif);
    font-weight: 500;
}

.offer-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.price-installment,
.price-pix {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

.price-value {
    font-family: var(--font-serif);
    font-size: 48px;
    line-height: 1;
    color: var(--color-gold);
    font-weight: 500;
}

.price-sep {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--color-text-muted);
    font-style: italic;
}

.offer-desc {
    font-size: 14px;
    color: var(--color-text-soft);
    margin-bottom: 30px;
    line-height: 1.7;
}

.offer-btn {
    padding: 16px 32px;
    font-size: 14px;
}

/* ---- SCARCITY / VAGAS LIMITADAS ---- */
.scarcity {
    padding: 90px 0;
    background: var(--color-bg);
}

.scarcity-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.scarcity h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.scarcity p {
    font-size: 14.5px;
    color: var(--color-text-soft);
    margin-bottom: 16px;
}

.scarcity-highlight {
    color: var(--color-gold);
    font-weight: 500;
    font-size: 16px !important;
    margin: 28px 0 36px !important;
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 22px !important;
}

/* ---- STORY / 8 ANOS NA EUROPA ---- */
.story {
    padding: 90px 0;
    background: var(--color-cream-light);
}

.story-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 26px;
}

.story-content p {
    margin-bottom: 18px;
}

.story-content .highlight {
    color: var(--color-gold);
    font-weight: 500;
    margin-top: 28px;
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(168, 124, 82, 0.08);
    border-color: var(--color-gold-soft);
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 500;
    color: var(--color-gold);
    line-height: 1;
    flex-shrink: 0;
}

.stat-label {
    font-size: 13.5px;
    color: var(--color-text-soft);
    line-height: 1.5;
}

/* ---- TIMELINE ---- */
.timeline {
    padding: 90px 0;
    background: var(--color-bg);
}

.timeline-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    margin-top: 40px;
}

.timeline-line {
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(to right,
        transparent,
        var(--color-gold-soft) 15%,
        var(--color-gold-soft) 85%,
        transparent);
    z-index: 0;
}

.timeline-item {
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.timeline-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-dot svg {
    width: 22px;
    height: 22px;
}

.timeline-item:hover .timeline-dot {
    background: var(--color-gold);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(184, 134, 75, 0.25);
}

.timeline-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 10px;
}

.timeline-item h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--color-text);
    font-family: var(--font-serif);
    font-weight: 500;
}

.timeline-item p {
    font-size: 13.5px;
    color: var(--color-text-soft);
    line-height: 1.7;
}

/* ============================================
   PÁGINA DE PROCEDIMENTOS
   ============================================ */

.hero-proc {
    padding: 100px 0 80px;
    text-align: center;
    background: var(--color-cream-light);
}

.hero-proc-inner {
    max-width: 760px;
    margin: 0 auto;
}

.hero-proc h1 {
    margin: 18px 0 22px;
}

.hero-proc-lead {
    font-size: 16px;
    color: var(--color-text-soft);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-proc .hero-actions {
    justify-content: center;
}

.procedures {
    padding: 90px 0;
    background: var(--color-bg);
}

.procedures-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 56px;
}

.proc-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.proc-card-reverse {
    direction: rtl;
}

.proc-card-reverse > * {
    direction: ltr;
}

.proc-img-placeholder {
    width: 100%;
    height: 420px;
    border-radius: 10px;
}

.proc-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--color-gold);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}

.proc-content h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--color-text);
}

.proc-content p {
    font-size: 14.5px;
    color: var(--color-text-soft);
    line-height: 1.7;
    margin-bottom: 20px;
}

.proc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.proc-list li {
    font-size: 13.5px;
    color: var(--color-text);
    padding: 8px 0 8px 24px;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

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

.proc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 12px;
    height: 6px;
    border-left: 1.5px solid var(--color-gold);
    border-bottom: 1.5px solid var(--color-gold);
    transform: rotate(-45deg);
}

.proc-btn {
    margin-top: 6px;
}

/* ============================================
   PROTOCOLO HARMONY
   ============================================ */

.section-lead {
    font-size: 16px;
    color: var(--color-text-soft);
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-lead.center {
    text-align: center;
}

/* -- A SENSAÇÃO -- */
.sensation {
    padding: 90px 0;
    background: var(--color-cream-light);
}

.sensation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.sensation-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 36px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.sensation-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold-soft);
    box-shadow: 0 14px 32px rgba(168, 124, 82, 0.08);
}

.sensation-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    color: var(--color-gold);
}

.sensation-icon svg {
    width: 100%;
    height: 100%;
}

.sensation-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1.25;
    color: var(--color-text);
    font-weight: 500;
    margin: 0 0 14px;
}

.sensation-card p {
    font-size: 13.5px;
    color: var(--color-text-soft);
    line-height: 1.7;
    margin: 0;
}

/* -- A SOLUÇÃO · HARMONY -- */
.harmony {
    padding: 100px 0;
    background: var(--color-bg);
}

.harmony-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.harmony-content h2 {
    margin-bottom: 28px;
}

.harmony-content p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.8;
}

.harmony-content p strong {
    color: var(--color-text);
    font-weight: 600;
}

.harmony-content .highlight {
    color: var(--color-gold);
    font-family: var(--font-serif);
    font-size: 24px;
    font-style: italic;
    margin-top: 28px;
    font-weight: 500;
}

.harmony-img-placeholder {
    width: 100%;
    height: 520px;
    border-radius: 10px;
}

.harmony-image {
    position: relative;
}

.harmony-image::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(184, 134, 75, 0.35);
    border-radius: 22px;
    pointer-events: none;
    z-index: 0;
}

.harmony-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 22px;
    box-shadow:
        0 30px 60px -20px rgba(64, 38, 16, 0.28),
        0 12px 24px -10px rgba(64, 38, 16, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.harmony-img:hover {
    transform: translateY(-4px);
    box-shadow:
        0 40px 80px -20px rgba(64, 38, 16, 0.32),
        0 16px 28px -10px rgba(64, 38, 16, 0.18);
}

/* -- PILARES -- */
.pillars {
    padding: 90px 0;
    background: var(--color-cream-light);
}

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

.pillar {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 36px 28px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.pillar:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold-soft);
    box-shadow: 0 16px 36px rgba(168, 124, 82, 0.1);
}

.pillar-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 36px;
    line-height: 1;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 18px;
}

.pillar h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-text);
    line-height: 1.25;
    font-weight: 500;
    margin: 0 0 14px;
}

.pillar p {
    font-size: 13.5px;
    color: var(--color-text-soft);
    line-height: 1.7;
    margin: 0;
}

/* -- TRANSFORMAÇÃO / VÍDEO -- */
.transformation {
    padding: 100px 0;
    background: var(--color-bg);
}

.video-frame {
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    background: #0d0d0d;
    position: relative;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #0d0d0d;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d8d8d8 0%, #c8c2b5 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-icon {
    width: 80px;
    height: 80px;
    color: #fff;
    opacity: 0.92;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.video-frame:hover .video-play-icon {
    transform: scale(1.08);
}

.video-label {
    position: absolute;
    bottom: 16px;
    right: 18px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 999px;
}

.transformation-quote {
    max-width: 720px;
    margin: 60px auto 0;
    text-align: center;
    font-family: var(--font-serif);
}

.transformation-quote .quote-mark {
    font-size: 56px;
    color: var(--color-gold);
    line-height: 0;
    display: block;
    margin-bottom: 12px;
}

.transformation-quote p {
    font-size: 22px;
    color: var(--color-text);
    line-height: 1.45;
    font-style: italic;
    margin: 0 0 18px;
}

.transformation-quote cite {
    display: block;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 12px;
    color: var(--color-text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ---- HERO LINK SECUNDÁRIO ---- */
.hero-link {
    font-size: 13px;
    color: var(--color-text-soft);
    text-decoration: none;
    padding: 14px 8px;
    font-weight: 500;
    transition: color 0.2s;
    align-self: center;
}

.hero-link:hover {
    color: var(--color-gold);
}

.hero-lead strong {
    color: var(--color-gold);
    font-weight: 600;
}

.btn-lg {
    padding: 17px 32px;
    font-size: 14px;
    font-weight: 600;
}

/* ---- BARRA DE PROVA SOCIAL ---- */
.social-bar {
    background: var(--color-bg);
    padding: 22px 0;
    border-bottom: 1px solid var(--color-border);
}

.social-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--color-text-soft);
    white-space: nowrap;
}

.social-item svg {
    width: 22px;
    height: 22px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.social-item strong {
    color: var(--color-text);
    font-weight: 600;
}

.social-item .muted {
    color: var(--color-text-muted);
    font-weight: 400;
}

.social-divider {
    width: 1px;
    height: 22px;
    background: var(--color-border);
}

/* ---- WHATSAPP FLUTUANTE ---- */
.wa-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px 14px 16px;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    animation: waPulse 2.4s ease-in-out infinite;
}

.wa-float svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.wa-float:hover {
    background: #1ebe5a;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45), 0 6px 16px rgba(0, 0, 0, 0.15);
    animation: none;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ---- CTA FINAL REFINADO ---- */
.cta-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 500;
}

.cta-offer {
    font-family: var(--font-serif);
    font-size: 22px;
    color: #fff !important;
    line-height: 1.5 !important;
    margin: 8px 0 20px !important;
    font-style: italic;
}

.cta-offer strong {
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    color: #fff;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 13.5px !important;
}

/* ---- FAQ ---- */
.faq {
    padding: 90px 0;
    background: var(--color-bg);
}

.faq-inner {
    max-width: 820px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--color-cream-light);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item[open] {
    border-color: var(--color-gold-soft);
    background: #fff;
    box-shadow: 0 8px 24px rgba(168, 124, 82, 0.06);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.2s ease;
}

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

.faq-item summary:hover {
    color: var(--color-gold);
}

.faq-toggle {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--color-gold);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    margin-top: -1px;
}

.faq-toggle::after {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
}

.faq-item[open] .faq-toggle::after {
    transform: scaleY(0);
}

.faq-body {
    padding: 0 28px 24px;
    animation: faqOpen 0.35s ease;
}

.faq-body p {
    font-size: 14px;
    color: var(--color-text-soft);
    line-height: 1.7;
    margin: 0;
}

@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- STEPS ---- */
.steps {
    padding: 90px 0;
    background: var(--color-bg);
}

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

.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-border) 20%, var(--color-border) 80%, transparent);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    background: var(--color-bg);
    padding: 0 8px;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    color: var(--color-gold);
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
}

.step h3 {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--color-text);
    font-family: var(--font-sans);
    font-weight: 500;
}

.step p {
    font-size: 12.5px;
    color: var(--color-text-soft);
    line-height: 1.6;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
    padding: 90px 0 60px;
    background: var(--color-cream-light);
}

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

/* Slider / Carrossel */
.slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.slider-viewport {
    overflow: hidden;
    flex: 1;
    padding: 4px;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.slider-track .testimonial {
    flex: 0 0 calc((100% - 48px) / 3);
    box-sizing: border-box;
    margin: 0;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    color: var(--color-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
    padding: 0;
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

.slider-arrow:hover {
    background: var(--color-gold);
    color: #fff;
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184, 134, 75, 0.25);
}

.slider-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: var(--color-bg);
    color: var(--color-gold);
}

.dot {
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    padding: 0;
    background: var(--color-border);
}

.dot:hover:not(.active) {
    background: var(--color-gold-soft);
}

.testimonial {
    background: var(--color-bg);
    padding: 32px 28px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    position: relative;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 44px;
    color: var(--color-gold);
    line-height: 0.5;
    display: block;
    margin-bottom: 16px;
}

.testimonial p {
    font-size: 13.5px;
    color: var(--color-text-soft);
    margin-bottom: 28px;
    line-height: 1.7;
}

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

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
}

.author strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 2px;
}

.author span {
    font-size: 11.5px;
    color: var(--color-text-muted);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-border);
}

.dot.active {
    background: var(--color-gold);
}

/* ---- CTA FINAL ---- */
.cta-final {
    background: var(--color-brown);
    padding: 70px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    color: #fff;
    margin-bottom: 18px;
}

.cta-text p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.cta-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
}

.cta-leaf {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    opacity: 0.25;
    background: rgba(255,255,255,0.1);
    border-radius: 50% 10% 50% 10%;
    pointer-events: none;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--color-brown);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-footer {
    height: 80px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.privacy {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.privacy:hover {
    text-decoration: underline;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }

    .header-inner {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
    }

    .hero {
        padding: 24px 0 32px;
    }

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

    .hero-content {
        order: 1;
        padding-right: 0;
        text-align: center;
    }

    .hero-content h1 {
        margin-bottom: 14px;
    }

    .hero-lead {
        margin-bottom: 12px;
    }

    .hero-ofertas .hero-actions {
        margin-top: 2px;
    }

    .hero-image {
        order: 2;
        height: auto;
        max-width: 320px;
        aspect-ratio: 591 / 648;
        margin: 0 auto;
    }

    .hero-harmony .hero-image {
        max-width: 440px;
        aspect-ratio: 5 / 6;
    }

    .hero-ofertas .hero-image {
        max-width: 420px;
        aspect-ratio: 4 / 5;
        height: auto;
    }

    .hero-img-placeholder,
    .hero-img {
        object-fit: contain;
    }

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

    .eyebrow {
        margin-bottom: 14px;
    }

    .hero-img-placeholder,
    .hero-img {
        border-radius: 8px;
        object-position: center top;
    }

    .protocolo-inner,
    .cta-inner,
    .story-inner,
    .proc-card,
    .harmony-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sensation-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .harmony {
        padding: 60px 0;
    }

    .harmony-img-placeholder {
        height: 380px;
    }

    .harmony-image::before {
        inset: 14px -14px -14px 14px;
        border-radius: 18px;
    }

    .harmony-img {
        border-radius: 18px;
    }

    .sensation,
    .pillars,
    .transformation {
        padding: 60px 0;
    }

    .transformation-quote p {
        font-size: 18px;
    }

    .harmony-content .highlight {
        font-size: 20px;
    }

    .proc-card,
    .proc-card-reverse {
        direction: ltr;
    }

    .procedures-grid {
        gap: 56px;
    }

    .proc-img-placeholder {
        height: 300px;
    }

    .proc-content h3 {
        font-size: 26px;
    }

    .hero-proc {
        padding: 60px 0;
    }

    .procedures {
        padding: 60px 0;
    }

    .timeline-track {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline-line {
        display: none;
    }

    .offer {
        padding: 60px 0;
    }

    .offer-card {
        padding: 44px 28px;
    }

    .offer-title {
        font-size: 22px;
    }

    .price-value {
        font-size: 38px;
    }

    .offer-price {
        gap: 18px;
    }

    .scarcity {
        padding: 60px 0;
    }

    .scarcity h2 {
        font-size: 28px;
    }

    .story {
        padding: 60px 0;
    }

    .timeline {
        padding: 60px 0;
    }

    .faq {
        padding: 60px 0;
    }

    .faq-item summary {
        padding: 18px 20px;
        font-size: 14px;
    }

    .faq-body {
        padding: 0 20px 20px;
    }

    .story-stats {
        gap: 12px;
    }

    .stat-card {
        padding: 22px 24px;
        gap: 18px;
    }

    .stat-num {
        font-size: 40px;
    }

    .protocolo {
        padding: 60px 0;
    }

    .protocolo-content {
        text-align: center;
    }

    .protocolo-img,
    .protocolo-img-placeholder {
        height: 320px;
    }

    .benefits {
        padding: 40px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }

    .benefit {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .benefit p {
        font-size: 13px;
    }

    .steps {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 44px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 20px;
    }

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

    .step-icon {
        width: 52px;
        height: 52px;
    }

    .testimonials {
        padding: 60px 0 40px;
    }

    .slider-track .testimonial,
    .packs-track .pack-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .pack-featured {
        transform: none;
    }

    .pack-featured:hover {
        transform: translateY(-4px);
    }

    .slider-arrow {
        width: 42px;
        height: 42px;
    }

    .cta-final {
        padding: 55px 0;
        text-align: center;
    }

    .cta-actions {
        align-items: center;
    }

    .cta-actions .btn {
        max-width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cta-leaf {
        display: none;
    }

    .social-bar-inner {
        gap: 14px 18px;
    }

    .social-divider {
        display: none;
    }

    .social-item {
        font-size: 12px;
    }

    .social-item svg {
        width: 18px;
        height: 18px;
    }

    .hero-lead {
        font-size: 14px;
    }

    .cta-offer {
        font-size: 18px !important;
    }

    .cta-offer strong {
        font-size: 22px;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 20px;
    }

    h1 { font-size: 30px; line-height: 1.2; }
    h2 { font-size: 26px; }

    .hero {
        padding: 18px 0 24px;
    }

    .hero-inner {
        gap: 14px;
    }

    .hero-image {
        max-width: 280px;
    }

    .hero-harmony .hero-image {
        max-width: 380px;
    }

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

    .harmony-img-placeholder {
        height: 300px;
    }

    .harmony-image::before {
        display: none;
    }

    .harmony-img {
        max-width: 360px;
        margin: 0 auto;
        border-radius: 16px;
    }

    .sensation-card,
    .pillar {
        padding: 28px 22px;
    }


    .hero h1 {
        font-size: 28px;
        line-height: 1.18;
    }

    .hero-lead {
        font-size: 13.5px;
    }

    .hero-text {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .hero-text {
        margin-bottom: 26px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
        width: 100%;
    }

    .benefits {
        padding: 32px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .benefit-icon {
        width: 42px;
        height: 42px;
    }

    .benefit p {
        font-size: 12.5px;
        line-height: 1.45;
    }

    .protocolo {
        padding: 48px 0;
    }

    .protocolo-img,
    .protocolo-img-placeholder {
        height: 240px;
    }

    .steps {
        padding: 48px 0;
    }

    .section-title {
        margin-bottom: 36px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .step h3 {
        font-size: 14px;
    }

    .step p {
        font-size: 12px;
    }

    .testimonials {
        padding: 48px 0 32px;
    }

    .testimonial {
        padding: 26px 22px;
    }

    .slider {
        gap: 6px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
    }

    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }

    .slider-track .testimonial,
    .packs-track .pack-card {
        flex: 0 0 100%;
    }

    .cta-final {
        padding: 44px 0;
    }

    .btn-nav span:not(.icon-wa) {
        display: none;
    }

    .logo {
        height: 72px;
    }

    .logo-footer {
        height: 64px;
    }

    .header {
        padding: 10px 0;
    }

    .wa-float {
        padding: 14px;
        bottom: 16px;
        right: 16px;
    }

    .wa-float-label {
        display: none;
    }

    .wa-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ============================================
   ANIMAÇÕES DE ABERTURA
   ============================================ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header — fade down imediato */
.anim-header {
    animation: slideDown 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Hero — elementos em cascata */
.anim-fade-up {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--d, 0s);
}

.anim-fade-in {
    opacity: 0;
    animation: fadeIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--d, 0s);
}

/* Reveal — disparado via Intersection Observer */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Botões com leve hover lift */
.btn {
    transform: translateY(0);
}

.btn-primary:hover,
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 124, 82, 0.25);
}

/* Respeitar usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
    .anim-header,
    .anim-fade-up,
    .anim-fade-in {
        animation: none;
        opacity: 1;
    }

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

/* ============================================
   OFERTAS PAGE (ofertas.html)
   ============================================ */

/* === HERO modificador === */
.hero-ofertas {
    background: #eedfd3 url("fundo-procedimento-bg.jpg") center / cover no-repeat;
}

/* === HERO IMAGE STACK (sobreposição de imagens dinâmicas via UTM) === */
.hero-ofertas .hero-image {
    position: relative;
    overflow: visible;
}

/* Empilha todas as variações no mesmo espaço (só a visível aparece) */
.hero-ofertas .hero-image > picture,
.hero-ofertas .hero-image > .hero-pic-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 30px 60px -20px rgba(64, 38, 16, 0.28),
        0 12px 24px -10px rgba(64, 38, 16, 0.15);
}

.hero-ofertas .hero-image > picture img,
.hero-ofertas .hero-image > .hero-pic-alt {
    object-fit: cover;
    object-position: center;
}

/* Foco específico por imagem (mostra a parte importante de cada uma) */
.hero-ofertas .hero-image > [data-hero-img="botox"] {
    object-position: center 30%;
}

.hero-ofertas .hero-image > [data-hero-img="labial"] {
    object-position: center 45%;
}

.hero-ofertas .hero-image > [data-hero-img="bigode-chines"] {
    object-position: center 30%;
}

/* Garante que [hidden] esconda mesmo quando display: block está no .hero-img */
.hero-ofertas .hero-image > [hidden] {
    display: none !important;
}

/* === HERO PRICE BADGE (Mês das Mães · R$ 700) === */
.hero-price-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(184, 134, 75, 0.25);
    border-left: 4px solid var(--color-gold);
    padding: 18px 28px;
    margin: 28px 0;
    border-radius: 8px;
    box-shadow: 0 8px 24px -8px rgba(64, 38, 16, 0.18);
}

.hero-price-from {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

.hero-price-value {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 600;
    color: var(--color-brown);
    line-height: 1;
    margin: 2px 0 6px;
}

.hero-price-context {
    font-size: 12px;
    color: var(--color-gold);
    font-style: italic;
    font-weight: 500;
}

/* Variações do hero (animação ao trocar via UTM) */
.hero-variant {
    animation: fadeInVariant 0.6s ease;
}

@keyframes fadeInVariant {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
    .hero-price-badge {
        margin: 18px auto;
        padding: 14px 22px;
    }
}

@media (max-width: 560px) {
    .hero-price-value {
        font-size: 42px;
    }

    .hero-price-badge {
        padding: 12px 20px;
        margin: 14px auto;
    }

    .hero-price-from {
        font-size: 10px;
    }

    .hero-price-context {
        font-size: 11px;
    }
}

/* Link secundário (Falar agora →) */
.link-secondary {
    color: var(--color-gold);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.3s ease, color 0.3s ease;
    align-self: center;
}

.link-secondary:hover {
    color: var(--color-brown);
    border-bottom-color: var(--color-gold);
}

/* Social bar variante creme (uniforme com o hero) */
.social-bar-cream {
    background: var(--color-cream-light);
    border-bottom: 1px solid rgba(184, 134, 75, 0.15);
}

/* === INTRO OFERTAS === */
.ofertas-intro {
    padding: 90px 0 40px;
    background: var(--color-cream-light);
    text-align: center;
}

/* === OFERTA (seção) === */
.oferta {
    padding: 90px 0;
    background: var(--color-bg);
    transition: background-color 0.6s ease;
    position: relative;
}

.oferta-alt {
    background: var(--color-cream-light);
}

.oferta-destacada {
    background: linear-gradient(180deg, rgba(184, 134, 75, 0.10) 0%, transparent 60%);
}

.oferta-destacada.oferta-alt {
    background: linear-gradient(180deg, rgba(184, 134, 75, 0.14) 0%, var(--color-cream-light) 60%);
}

.oferta-destacada .oferta-tag {
    background: var(--color-gold);
    color: #fff;
}

.oferta-tag {
    display: inline-block;
    background: rgba(184, 134, 75, 0.12);
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 7px 18px;
    border-radius: 24px;
    margin-bottom: 40px;
    transition: all 0.4s ease;
}

.oferta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.oferta-image {
    position: relative;
}

.oferta-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 22px;
    box-shadow:
        0 30px 60px -20px rgba(64, 38, 16, 0.28),
        0 12px 24px -10px rgba(64, 38, 16, 0.15);
    display: block;
    transition: transform 0.6s ease;
}

.oferta-img:hover {
    transform: translateY(-4px);
}

/* Imagem botox é quase quadrada — alinha pelo topo pra preservar rostos */
.oferta-img-botox {
    object-position: center 20%;
}

/* placeholder quando imagem ainda não foi enviada */
.oferta-image.placeholder-active::before {
    content: "Foto em breve";
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #e8dccc, #d4c3a8);
    color: var(--color-brown);
    border-radius: 22px;
    font-family: var(--font-serif);
    font-size: 22px;
    font-style: italic;
}

.oferta-content {
    padding: 8px 0;
}

.oferta-title {
    font-family: var(--font-serif);
    font-size: 44px;
    line-height: 1.1;
    color: var(--color-brown);
    margin: 0 0 20px;
    font-weight: 500;
}

.oferta-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-soft);
    margin: 0 0 28px;
}

.oferta-desc strong {
    color: var(--color-gold);
    font-weight: 600;
}

.oferta-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.oferta-benefits li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.5;
}

.oferta-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    background: var(--color-gold);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
}

.oferta-price-block {
    background: rgba(184, 134, 75, 0.08);
    border-left: 4px solid var(--color-gold);
    padding: 22px 28px;
    margin-bottom: 28px;
    border-radius: 6px;
}

.oferta-alt .oferta-price-block {
    background: rgba(184, 134, 75, 0.12);
}

.oferta-price-label {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

.oferta-price {
    display: block;
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    color: var(--color-brown);
    line-height: 1;
}

.oferta-price-sub {
    display: block;
    font-size: 13px;
    color: var(--color-text-soft);
    margin-top: 8px;
    font-style: italic;
}

/* === BÔNUS FULL FACE === */
.bonus-fullface {
    padding: 100px 0;
    background: linear-gradient(135deg, #4a2e15 0%, #2d1a08 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.bonus-fullface::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 134, 75, 0.18), transparent 70%);
    pointer-events: none;
}

.bonus-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bonus-content .eyebrow {
    color: rgba(255, 255, 255, 0.65);
}

.bonus-content h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    line-height: 1.1;
    margin: 18px 0 24px;
    font-weight: 500;
    color: #fff;
}

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

.bonus-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.88);
}

.bonus-content .btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    margin-top: 16px;
    background: transparent;
}

.bonus-content .btn-outline:hover {
    background: #fff;
    color: #4a2e15;
}

.bonus-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.bonus-stats .stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 26px 28px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.bonus-stats .stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 44px;
    color: var(--color-gold-light);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 600;
}

.bonus-stats .stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    letter-spacing: 0.3px;
}

/* === RESPONSIVO OFERTAS === */
@media (max-width: 960px) {
    .oferta {
        padding: 44px 0;
    }

    .oferta-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .oferta-alt .oferta-content { order: 2; }
    .oferta-alt .oferta-image { order: 1; }

    .oferta-title {
        font-size: 34px;
    }

    .oferta-desc {
        font-size: 16px;
    }

    .oferta-image {
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
    }

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

    .bonus-fullface {
        padding: 70px 0;
    }

    .bonus-content h2 {
        font-size: 36px;
    }

    .bonus-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .bonus-stats .stat-card {
        padding: 20px 14px;
    }

    .bonus-stats .stat-num {
        font-size: 30px;
    }

    .bonus-stats .stat-label {
        font-size: 11px;
    }

    .ofertas-intro {
        padding: 40px 0 8px;
    }

    .oferta-content {
        padding: 0;
        text-align: center;
    }

    .oferta-benefits {
        display: inline-block;
        text-align: left;
    }

    .oferta-tag {
        margin-bottom: 22px;
    }

    .oferta-price-block {
        text-align: left;
    }

    .oferta-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .oferta-title {
        font-size: 28px;
    }

    .oferta-price {
        font-size: 34px;
    }

    .oferta-price-block {
        padding: 18px 20px;
    }

    .bonus-content h2 {
        font-size: 28px;
    }

    .bonus-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bonus-fullface {
        padding: 60px 0;
    }

    .oferta-tag {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 28px;
    }
}

/* ============================================
   LP INDIVIDUAL DE PROCEDIMENTO
   (botox.html, labial.html, bigode-chines.html)
   ============================================ */

.page-procedimento {
    background: #eedfd3;
}

/* === HERO INDIVIDUAL === */
.hero-procedimento {
    padding: 50px 0 70px;
    background: #eedfd3 url("fundo-procedimento-bg.jpg") center / cover no-repeat;
    overflow: hidden;
    position: relative;
}

.hero-procedimento-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.hero-procedimento-image {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 30px 60px -20px rgba(64, 38, 16, 0.32),
        0 14px 28px -10px rgba(64, 38, 16, 0.18);
    background: #fff;
}

.hero-procedimento-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Aspect-ratio sob medida por foto (evita corte) */
.page-botox .hero-procedimento-image { aspect-ratio: 1 / 1; }
.page-labial .hero-procedimento-image { aspect-ratio: 5 / 6; }
.page-bigode .hero-procedimento-image { aspect-ratio: 3 / 4; }

.hero-procedimento-content {
    padding: 4px 0;
}

.hero-procedimento-content h1 {
    font-family: var(--font-serif);
    font-size: 48px;
    line-height: 1.05;
    color: var(--color-brown);
    margin: 14px 0 18px;
    font-weight: 500;
}

.hero-procedimento .hero-lead {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.hero-procedimento .hero-lead strong {
    color: var(--color-gold);
    font-weight: 600;
}

/* Nav active state */
.nav a.active {
    color: var(--color-gold);
    position: relative;
    font-weight: 500;
}

.nav a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
}

/* === MÉTODO (3 passos · Como funciona) === */
.metodo {
    padding: 80px 0;
    background: var(--color-bg);
}

.metodo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.metodo-card {
    background: var(--color-cream-light);
    border-radius: 16px;
    padding: 32px 28px;
    border-top: 3px solid var(--color-gold);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.metodo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -16px rgba(64, 38, 16, 0.15);
}

.metodo-num {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--color-gold);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 14px;
}

.metodo-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-brown);
    margin: 0 0 12px;
    font-weight: 600;
    line-height: 1.25;
}

.metodo-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-text-soft);
    margin: 0;
}

/* === RESULTADO (foto + benefícios) === */
.resultado {
    padding: 80px 0;
    background: var(--color-cream-light);
}

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

.resultado-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 30px 60px -20px rgba(64, 38, 16, 0.28);
    background: #fff;
}

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

.resultado-content h2 {
    font-family: var(--font-serif);
    font-size: 34px;
    line-height: 1.15;
    color: var(--color-brown);
    margin: 14px 0 22px;
    font-weight: 500;
}

.resultado-note {
    margin-top: 24px;
    padding: 16px 22px;
    background: rgba(184, 134, 75, 0.10);
    border-left: 3px solid var(--color-gold);
    border-radius: 4px;
    font-size: 14.5px;
    color: var(--color-text);
    font-style: italic;
}

.resultado-note strong {
    font-style: normal;
    color: var(--color-gold);
}

/* === PROTOCOLO YULE (dark · padronização harmonização) === */
.protocolo-yule {
    padding: 100px 0;
    background: linear-gradient(135deg, #4a2e15 0%, #2d1a08 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.protocolo-yule::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 134, 75, 0.18), transparent 70%);
    pointer-events: none;
}

.protocolo-yule-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.protocolo-yule-content .eyebrow {
    color: rgba(255, 255, 255, 0.65);
}

.protocolo-yule-content h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    line-height: 1.1;
    margin: 18px 0 24px;
    font-weight: 500;
    color: #fff;
}

.protocolo-yule-content .highlight {
    color: var(--color-gold-light);
    font-style: italic;
}

.protocolo-yule-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.88);
}

.protocolo-yule-content .link-secondary {
    color: var(--color-gold-light);
    border-bottom-color: var(--color-gold-light);
    margin-top: 8px;
    display: inline-block;
}

.protocolo-yule-content .link-secondary:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.protocolo-yule-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.stat-card-dark {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px 28px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.stat-card-dark .stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 40px;
    color: var(--color-gold-light);
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 600;
}

.stat-card-dark .stat-label {
    display: block;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
    letter-spacing: 0.3px;
}

/* === CTA CROSS LINKS (Conheça também) === */
.cta-cross {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.cta-cross span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.cta-cross a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2px 0;
    transition: all 0.3s ease;
}

.cta-cross a:hover {
    border-bottom-color: var(--color-gold-light);
    color: var(--color-gold-light);
}

/* === RESPONSIVO LP INDIVIDUAL === */
@media (max-width: 960px) {
    .hero-procedimento {
        padding: 28px 0 36px;
    }

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

    .hero-procedimento-image {
        order: 1;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-procedimento-content {
        order: 2;
        text-align: center;
    }

    .hero-procedimento-content h1 {
        font-size: 32px;
        margin: 12px 0 14px;
    }

    .hero-procedimento .hero-lead {
        font-size: 15px;
    }

    .hero-procedimento .hero-price-badge {
        margin: 16px auto;
    }

    .hero-procedimento .hero-actions {
        justify-content: center;
    }

    .metodo {
        padding: 52px 0;
    }

    .metodo-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 28px;
    }

    .metodo-card {
        padding: 24px;
    }

    .metodo-num {
        font-size: 30px;
    }

    .metodo-card h3 {
        font-size: 20px;
    }

    .resultado {
        padding: 50px 0;
    }

    .resultado-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .resultado-image {
        max-width: 440px;
        margin: 0 auto;
    }

    .resultado-content {
        text-align: center;
    }

    .resultado-content h2 {
        font-size: 26px;
    }

    .resultado-content .oferta-benefits {
        display: inline-block;
        text-align: left;
    }

    .protocolo-yule {
        padding: 60px 0;
    }

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

    .protocolo-yule-content h2 {
        font-size: 30px;
    }

    .protocolo-yule-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-card-dark {
        padding: 18px 12px;
    }

    .stat-card-dark .stat-num {
        font-size: 28px;
    }

    .stat-card-dark .stat-label {
        font-size: 11px;
    }

    .cta-cross {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .hero-procedimento {
        padding: 18px 0 24px;
    }

    .hero-procedimento-inner {
        gap: 16px;
    }

    .hero-procedimento-image {
        max-width: 360px;
    }

    .hero-procedimento-content h1 {
        font-size: 26px;
    }

    .hero-procedimento .hero-lead {
        font-size: 14px;
    }

    .resultado-content h2 {
        font-size: 22px;
    }

    .protocolo-yule {
        padding: 50px 0;
    }

    .protocolo-yule-content h2 {
        font-size: 24px;
    }

    .protocolo-yule-stats {
        grid-template-columns: 1fr;
    }

    .stat-card-dark .stat-num {
        font-size: 34px;
    }

    .stat-card-dark .stat-label {
        font-size: 12px;
    }

    .metodo {
        padding: 42px 0;
    }

    .metodo-num {
        font-size: 28px;
    }

    .metodo-card h3 {
        font-size: 18px;
    }
}

/* ============================================
   SEÇÃO ESPAÇO (tour em vídeo · todas as LPs)
   ============================================ */
.espaco {
    padding: 100px 0;
    background: var(--color-cream-light);
    position: relative;
    overflow: hidden;
}

.espaco::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(184, 134, 75, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.espaco-video-frame {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 40px 80px -30px rgba(64, 38, 16, 0.45),
        0 18px 36px -12px rgba(64, 38, 16, 0.25);
    background: #1a0f06;
    cursor: pointer;
}

.espaco-video-frame::after {
    content: "";
    position: absolute;
    inset: 14px -14px -14px 14px;
    border: 1px solid rgba(184, 134, 75, 0.35);
    border-radius: 22px;
    pointer-events: none;
    z-index: -1;
}

.espaco-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tag "TOUR · YULE" no canto superior esquerdo */
.espaco-video-tag {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.28);
    pointer-events: none;
}

/* Botão de som no canto inferior direito */
.espaco-sound-btn {
    position: absolute;
    bottom: 22px;
    right: 22px;
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.espaco-sound-btn:hover {
    background: var(--color-gold);
    transform: scale(1.06);
    border-color: var(--color-gold);
}

.espaco-sound-btn svg {
    width: 22px;
    height: 22px;
}

.espaco-sound-btn .icon-sound { display: none; }
.espaco-sound-btn[data-muted="false"] .icon-muted { display: none; }
.espaco-sound-btn[data-muted="false"] .icon-sound { display: block; }

/* Pulsação sutil pra chamar atenção enquanto está mudo */
.espaco-sound-btn[data-muted="true"]::before,
.espaco-sound-btn[data-muted="true"]::after {
    content: "";
    position: absolute;
    inset: -2px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: espaco-sound-pulse 2.4s ease-out infinite;
    pointer-events: none;
}

.espaco-sound-btn[data-muted="true"]::after {
    animation-delay: 1.2s;
}

@keyframes espaco-sound-pulse {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.45); opacity: 0; }
}

.espaco-video-frame.is-unmuted .espaco-video-tag {
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Highlights abaixo do vídeo */
.espaco-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.espaco-highlight {
    text-align: center;
    padding: 32px 26px;
    background: var(--color-bg);
    border-radius: 18px;
    border: 1px solid var(--color-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.espaco-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -20px rgba(64, 38, 16, 0.18);
}

.espaco-highlight svg {
    width: 36px;
    height: 36px;
    color: var(--color-gold);
    margin-bottom: 16px;
    stroke-width: 1.5;
}

.espaco-highlight h3 {
    font-family: var(--font-serif);
    font-size: 21px;
    color: var(--color-brown);
    margin: 0 0 10px;
    font-weight: 600;
}

.espaco-highlight p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-soft);
    margin: 0;
}

/* Mobile */
@media (max-width: 960px) {
    .espaco {
        padding: 60px 0;
    }

    .espaco-video-frame {
        margin: 32px auto 0;
        border-radius: 14px;
    }

    .espaco-video-frame::after {
        display: none;
    }

    .espaco-video-tag {
        top: 14px;
        left: 14px;
        font-size: 10px;
        padding: 6px 12px;
        letter-spacing: 0.25em;
    }

    .espaco-sound-btn {
        width: 44px;
        height: 44px;
        bottom: 14px;
        right: 14px;
    }

    .espaco-sound-btn svg {
        width: 18px;
        height: 18px;
    }

    .espaco-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 36px;
    }

    .espaco-highlight {
        padding: 24px 22px;
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .espaco-highlight svg {
        margin-bottom: 0;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .espaco-highlight h3 {
        font-size: 18px;
    }

    .espaco-highlight p {
        font-size: 13.5px;
    }
}

@media (max-width: 560px) {
    .espaco {
        padding: 50px 0;
    }

    .espaco-sound-btn {
        width: 40px;
        height: 40px;
        bottom: 12px;
        right: 12px;
    }

    .espaco-sound-btn svg {
        width: 16px;
        height: 16px;
    }

    .espaco-video-tag {
        top: 12px;
        left: 12px;
        font-size: 9px;
        padding: 5px 10px;
    }
}
