/* =============================================================
   YARA CHALLENGE — Landing Page
   Mobile-first · Dark theme · Custom Properties
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900&family=Inter:wght@400;500;600&display=swap');

/* ── Tokens — Paleta Wellness Quente ──────────────────────────── */
.yara-landing {
    /* Cor da marca */
    --yara-primary:       #c84a6e;   /* rosa profundo — não neon  */
    --yara-secondary:     #e07a3a;   /* âmbar / terracota         */

    /* Fundos escuros — tons quentes (sem azul frio) */
    --yara-dark:          #120a08;
    --yara-dark-2:        #1c1210;
    --yara-dark-3:        #251a0e;

    /* Fundos claros — seções alternadas */
    --yara-light:         #faf3e8;
    --yara-light-2:       #f2e5cf;

    /* CTA — laranja vivo */
    --yara-cta-bg:        #ff6a00;
    --yara-cta-fg:        #fff;

    /* Texto */
    --yara-text:          #fff8f0;   /* branco quente             */
    --yara-text-dark:     #2c1a0e;   /* texto para seções claras  */
    --yara-muted:         rgba(255, 232, 205, 0.65);
    --yara-muted-dark:    rgba(50, 28, 12, 0.62);

    /* Bordas */
    --yara-border:        rgba(255, 205, 160, 0.10);
    --yara-border-light:  rgba(50, 28, 12, 0.12);

    /* Gradiente principal */
    --yara-grad:          linear-gradient(135deg, var(--yara-primary), var(--yara-secondary));

    /* Misc */
    --yara-r:             14px;
    --yara-r-sm:          8px;
    --yara-shadow:        0 10px 40px rgba(0, 0, 0, 0.38);
    --yara-transition:    0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
.yara-landing,
.yara-landing * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.yara-landing {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--yara-dark);
    color: var(--yara-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Impede que temas WP sobrescrevam cores dos títulos */
.yara-landing h1,
.yara-landing h2,
.yara-landing h3,
.yara-landing h4 {
    color: var(--yara-text);
}

.yara-landing a {
    color: inherit;
    text-decoration: none;
}

.yara-landing img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ── Container ──────────────────────────────────────────────── */
.yara-container {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
    padding-inline: 20px;
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────── */
.yara-btn {
    display: block;
    width: 100%;
    padding: 18px 24px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.4px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: transform var(--yara-transition),
                box-shadow var(--yara-transition),
                opacity var(--yara-transition);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    line-height: 1.3;
}

/* CTA — laranja vivo */
.yara-btn--cta {
    background: linear-gradient(135deg, #ff6a00, #ff8c00);
    color: #fff;
    box-shadow: 0 6px 28px rgba(255, 106, 0, 0.55), 0 2px 8px rgba(255, 106, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.yara-btn--cta:hover,
.yara-btn--cta:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 14px 48px rgba(255, 106, 0, 0.7), 0 4px 12px rgba(255, 106, 0, 0.4);
    background: linear-gradient(135deg, #ff7a10, #ff9a10);
    color: #fff;
}

.yara-btn--cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.4);
}

/* Outline */
.yara-btn--outline {
    background: transparent;
    color: var(--yara-text);
    border: 2px solid #ff6a00;
}

.yara-btn--outline:hover {
    background: #ff6a00;
    color: #fff;
}

/* Pulse animation */
.yara-btn--pulse {
    animation: yara-pulse 2.2s ease infinite;
}

@keyframes yara-pulse {
    0%   { box-shadow: 0 0 0 0    rgba(255, 106, 0, 0.75); }
    70%  { box-shadow: 0 0 0 22px rgba(255, 106, 0, 0);    }
    100% { box-shadow: 0 0 0 0    rgba(255, 106, 0, 0);    }
}

.yara-btn:disabled,
.yara-btn.is-loading {
    opacity: 0.65;
    cursor: not-allowed;
    animation: none;
    transform: none;
    pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────
   BADGES
   ───────────────────────────────────────────────────────────── */
.yara-badge {
    display: inline-block;
    background: var(--yara-grad);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.yara-badge--anim {
    animation: yara-badge-glow 2s ease-in-out infinite alternate;
}

@keyframes yara-badge-glow {
    from { box-shadow: 0 0 8px rgba(200, 74, 110, 0.4); }
    to   { box-shadow: 0 0 22px rgba(224, 122, 58, 0.6); }
}

.yara-badge--fire {
    background: linear-gradient(135deg, var(--yara-secondary), var(--yara-primary));
    animation: yara-fire 1.4s ease-in-out infinite alternate;
}

@keyframes yara-fire {
    from { box-shadow: 0 0 8px rgba(200, 74, 110, 0.45); }
    to   { box-shadow: 0 0 24px rgba(224, 122, 58, 0.7); }
}

/* ─────────────────────────────────────────────────────────────
   SECTION LABELS & TITLES
   ───────────────────────────────────────────────────────────── */
.yara-section-tag {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--yara-primary);
    margin-bottom: 10px;
}

.yara-section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1.22;
    margin-bottom: 22px;
    color: var(--yara-text);
}

/* ─────────────────────────────────────────────────────────────
   LOGO — FORMAFIT (CSS puro)
   ───────────────────────────────────────────────────────────── */
.yara-logo {
    display: inline-block;
    margin-bottom: 26px;
    text-align: left;
    text-decoration: none;
}
.yara-logo__row {
    display: inline-flex;
    align-items: center;
    gap: 0;
}
.yara-logo__icon {
    font-style: normal;
    font-size: 0.65rem;
    color: var(--yara-secondary);
    margin-right: 8px;
    opacity: 0.9;
    line-height: 1;
}
.yara-logo__forma {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.18rem;
    letter-spacing: 5px;
    color: var(--yara-text);
    text-transform: uppercase;
    line-height: 1;
}
.yara-logo__sep {
    display: inline-block;
    width: 1.5px;
    height: 13px;
    background: linear-gradient(to bottom, var(--yara-primary), var(--yara-secondary));
    margin-inline: 7px;
    opacity: 0.6;
    vertical-align: middle;
    border-radius: 2px;
}
.yara-logo__fit {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.18rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
    background: var(--yara-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.yara-logo__tagline {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--yara-muted);
    margin-top: 5px;
    font-weight: 400;
    padding-left: 2px;
}

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.yara-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background-color: var(--yara-dark);
    background-size: cover;
    background-position: center top;
    padding-block: 60px 52px;
    overflow: hidden;
}

/*
 * HERO LAYER STACK (z-index de baixo pra cima):
 *  1 — overlay escuro (base)
 *  2 — orbs coloridos
 *  3 — grid + grain + vignette (texturas acima dos orbs)
 *  4 — partículas
 *  5 — conteúdo (.yara-hero__split)
 */

/* dark overlay warm — base, mais suave no topo para os orbs respirarem */
.yara-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        175deg,
        rgba(18, 10, 8, 0.30) 0%,
        rgba(18, 10, 8, 0.72) 48%,
        rgba(18, 10, 8, 0.92) 100%
    );
    z-index: 1;
}

/* Glow orbs — acima do overlay para ficarem visíveis */
.yara-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 2;
}
.yara-hero__orb--1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(200, 74, 110, 0.38) 0%, transparent 70%);
    top: -140px; left: -140px;
    animation: yara-orb-drift 8s ease-in-out infinite alternate;
}
.yara-hero__orb--2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(224, 122, 58, 0.32) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    animation: yara-orb-drift 10s ease-in-out infinite alternate-reverse;
}
@keyframes yara-orb-drift {
    from { transform: translate(0, 0); }
    to   { transform: translate(30px, 20px); }
}

/* grid removido — decoração agora só no lado das fotos */

/* ── SVG fractal grain (acabamento orgânico) ── */
.yara-hero__noise {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    background-repeat: repeat;
}

/* ── Radial vignette — direciona o olhar pro centro ── */
.yara-hero__vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(
        ellipse 70% 75% at 50% 45%,
        transparent 35%,
        rgba(12, 6, 4, 0.65) 100%
    );
}

/* Floating particles — acima das texturas */
.yara-hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
    overflow: hidden;
}
.yara-particle {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--yara-primary);
    opacity: 0;
    animation: yara-particle-rise 6s ease-in infinite;
}
.yara-particle:nth-child(1)  { left: 10%; animation-delay: 0s;    width: 3px; height: 3px; }
.yara-particle:nth-child(2)  { left: 25%; animation-delay: 1.2s;  background: var(--yara-secondary); }
.yara-particle:nth-child(3)  { left: 40%; animation-delay: 0.5s;  width: 5px; height: 5px; opacity: 0.6; }
.yara-particle:nth-child(4)  { left: 55%; animation-delay: 2s;    background: #f9d423; }
.yara-particle:nth-child(5)  { left: 68%; animation-delay: 0.8s;  width: 3px; height: 3px; }
.yara-particle:nth-child(6)  { left: 80%; animation-delay: 1.6s;  background: var(--yara-secondary); }
.yara-particle:nth-child(7)  { left: 90%; animation-delay: 3s; }
.yara-particle:nth-child(8)  { left: 5%;  animation-delay: 2.4s;  background: #f9d423; width: 2px; height: 2px; }
@keyframes yara-particle-rise {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-60px)  scale(1.5); opacity: 0; }
}

/* Split layout container — double-class selector beats .yara-container media query overrides */
.yara-container.yara-container--hero {
    max-width: 1600px;
    width: 100%;
    padding-inline: clamp(20px, 4vw, 72px);
}

.yara-hero__split {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.yara-hero__left {
    text-align: center;
    width: 100%;
}

/* desktop right column hidden on mobile */
.yara-hero__right {
    display: none;
}

/* inline media (mobile-only photos between headline and form) */
.yara-hero__media--inline {
    margin-bottom: 24px;
}

/* ── Title ── */
.yara-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 2.05rem;
    line-height: 1.22;
    letter-spacing: 0;
    color: var(--yara-text);
    margin-bottom: 20px;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.5);
}
.yara-hero__title span {
    background: var(--yara-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.yara-hero__subtitle {
    font-size: 1.02rem;
    color: var(--yara-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* urgency strip */
.yara-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.35);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 0.8rem;
    color: #ff9060;
    font-weight: 600;
    margin-bottom: 28px;
}
.yara-urgency__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ff6b35;
    animation: yara-dot 1.2s ease infinite;
    flex-shrink: 0;
}
@keyframes yara-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

/* micro social proof avatars */
.yara-hero__avatars {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.yara-avatars { display: flex; }
.yara-avatars__bubble {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--yara-dark-3);
    border: 2px solid var(--yara-dark-2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    margin-left: -10px;
}
.yara-avatars__bubble:first-child { margin-left: 0; }
.yara-avatars__text { font-size: 0.82rem; color: var(--yara-muted); }
.yara-avatars__text strong { color: #fff; }

/* ═══════════════════════════════════════════════════════════
   HERO PHOTO MOSAIC
   ═══════════════════════════════════════════════════════════ */
.yara-hero__mosaic-wrap {
    position: relative;
    width: 100%;
}

/* floating proof pill above mosaic */
.yara-hero__proof-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 13, 26, 0.75);
    border: 1px solid rgba(249, 212, 35, 0.35);
    border-radius: 50px;
    padding: 8px 16px 8px 8px;
    margin-bottom: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: yara-pill-in 0.6s ease both;
}
@keyframes yara-pill-in {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: none; }
}
.yara-hero__proof-pill-faces {
    display: flex;
}
.yara-hero__proof-pill-faces span {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--yara-dark-3);
    border: 2px solid var(--yara-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    margin-left: -8px;
}
.yara-hero__proof-pill-faces span:first-child { margin-left: 0; }
.yara-hero__proof-pill-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #f9d423;
    line-height: 1.3;
}
.yara-hero__proof-pill-text em {
    display: block;
    font-style: normal;
    font-weight: 400;
    font-size: 0.68rem;
    color: var(--yara-muted);
}

/* 2×2 mosaic grid */
.yara-hero__mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.yara-hero__photo-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--yara-dark-3);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.yara-hero__photo-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.65);
}
/* Taller first card — visual interest */
.yara-hero__photo-card:nth-child(1) {
    grid-row: span 1;
    transform: rotate(-1.2deg);
}
.yara-hero__photo-card:nth-child(2) {
    transform: rotate(1deg);
    margin-top: 14px;
}
.yara-hero__photo-card:nth-child(3) {
    transform: rotate(0.8deg);
    margin-top: -10px;
}
.yara-hero__photo-card:nth-child(4) {
    transform: rotate(-0.6deg);
    margin-top: 6px;
}
.yara-hero__photo-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}
.yara-hero__photo-card:hover img {
    transform: scale(1.06);
}

/* gradient overlay on each photo */
.yara-hero__photo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.10) 55%,
        transparent 100%
    );
    z-index: 1;
    border-radius: inherit;
}

/* glow ring on photo card */
.yara-hero__photo-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: var(--yara-grad);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.yara-hero__photo-card:hover::after {
    opacity: 1;
}

/* Badge label on bottom of photo */
.yara-hero__photo-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: rgba(13, 13, 26, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.2px;
}

/* Placeholder when no photo uploaded */
.yara-hero__photo-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(233,30,140,0.12), rgba(255,107,53,0.08));
}
.yara-hero__photo-placeholder span { font-size: 2rem; opacity: 0.5; }
.yara-hero__photo-placeholder small {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    padding-inline: 12px;
    line-height: 1.4;
    font-style: italic;
}

/* Main / principal photo */
.yara-hero__photo-main-wrap {
    position: relative;
    margin-bottom: 12px;
}
.yara-hero__photo-main {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    border: 2px solid rgba(233, 30, 140, 0.35);
    box-shadow:
        0 0 0 6px rgba(233, 30, 140, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Floating star card over photo */
.yara-hero__float-stars {
    position: absolute;
    bottom: -14px;
    right: -14px;
    background: rgba(13, 13, 26, 0.90);
    border: 1px solid rgba(249, 212, 35, 0.3);
    border-radius: 12px;
    padding: 10px 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    animation: yara-float 3.5s ease-in-out infinite;
    z-index: 3;
    min-width: 110px;
}
@keyframes yara-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
.yara-hero__float-stars-emoji {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #f9d423;
    margin-bottom: 3px;
}
.yara-hero__float-stars-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    color: #fff;
    line-height: 1.2;
}
.yara-hero__float-stars-sub {
    font-size: 0.6rem;
    color: var(--yara-muted);
    margin-top: 2px;
}

/* animate photo cards in */
.yara-hero__photo-card {
    animation: yara-card-in 0.7s ease both;
}
.yara-hero__photo-card:nth-child(1) { animation-delay: 0.1s; }
.yara-hero__photo-card:nth-child(2) { animation-delay: 0.22s; }
.yara-hero__photo-card:nth-child(3) { animation-delay: 0.34s; }
.yara-hero__photo-card:nth-child(4) { animation-delay: 0.46s; }
@keyframes yara-card-in {
    from { opacity: 0; transform: translateY(24px) rotate(0deg) scale(0.92); }
    to   { opacity: 1; }
}

/* ─────────────────────────────────────────────────────────────
   DESKTOP HERO SPLIT (≥ 760px)
   ───────────────────────────────────────────────────────────── */
@media (min-width: 760px) {
    .yara-hero {
        padding-block: 80px 72px;
        min-height: 100svh;
        align-items: center;
    }
    .yara-hero__split {
        flex-direction: row;
        align-items: center;
        gap: 72px;
    }
    .yara-hero__left {
        flex: 0 0 44%;
        text-align: left;
    }
    .yara-hero__right {
        display: block;
        flex: 1;
        position: relative;
        overflow: visible;
    }

    /* ── Decoração botânica — ramos e folhas atrás das fotos ── */
    .yara-hero__right::before {
        content: '';
        position: absolute;
        top: 0; left: -6%; bottom: 0;
        width: 58%;
        z-index: 0;
        pointer-events: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 600'%3E%3Cpath d='M 80 580 C 70 480 80 380 100 290 C 115 220 140 170 160 120' fill='none' stroke='%23c8854a' stroke-width='1.4'/%3E%3Cpath d='M 90 450 C 55 420 25 380 35 340 C 65 375 88 425 90 450 Z' fill='none' stroke='%23c8854a' stroke-width='1.1'/%3E%3Cline x1='90' y1='450' x2='35' y2='340' stroke='%23c8854a' stroke-width='0.7'/%3E%3Cpath d='M 108 330 C 155 305 195 295 205 270 C 165 285 118 315 108 330 Z' fill='none' stroke='%23e07a3a' stroke-width='1.1'/%3E%3Cline x1='108' y1='330' x2='205' y2='270' stroke='%23e07a3a' stroke-width='0.7'/%3E%3Cpath d='M 130 200 C 90 185 60 165 65 145 C 95 160 125 185 130 200 Z' fill='none' stroke='%23c8854a' stroke-width='1'/%3E%3Cline x1='130' y1='200' x2='65' y2='145' stroke='%23c8854a' stroke-width='0.6'/%3E%3Cpath d='M 160 120 C 180 90 200 70 190 50' fill='none' stroke='%23e07a3a' stroke-width='0.9' stroke-dasharray='3 5'/%3E%3Ccircle cx='220' cy='180' r='2.5' fill='%23f0aa40'/%3E%3Ccircle cx='242' cy='228' r='1.8' fill='%23e07a3a'/%3E%3Ccircle cx='196' cy='148' r='1.2' fill='%23f0aa40'/%3E%3Ccircle cx='278' cy='305' r='2' fill='%23c84a6e'/%3E%3Ccircle cx='258' cy='262' r='1.5' fill='%23e07a3a'/%3E%3C/svg%3E");
        background-size: contain;
        background-position: left center;
        background-repeat: no-repeat;
        opacity: 0.24;
    }

    /* ── Bloom de luz quente acima das fotos ── */
    .yara-hero__right::after {
        content: '';
        position: absolute;
        top: -15%; left: 5%;
        width: 85%; height: 55%;
        z-index: 0;
        pointer-events: none;
        background: radial-gradient(
            ellipse at 42% 28%,
            rgba(224, 122, 58, 0.15) 0%,
            rgba(240, 170, 64, 0.07) 50%,
            transparent 72%
        );
    }

    /* Mosaico fica acima das decorações */
    .yara-hero__right .yara-hero__mosaic-wrap {
        position: relative;
        z-index: 1;
    }

    /* hide the inline (mobile) photos on desktop */
    .yara-hero__media--inline {
        display: none;
    }
    .yara-hero__title { font-size: 2.5rem; }
    .yara-hero__subtitle { margin-inline: 0; max-width: 430px; }
    .yara-urgency { justify-content: flex-start; }
    .yara-hero__avatars { justify-content: flex-start; }
}

/* ─────────────────────────────────────────────────────────────
   FORM
   ───────────────────────────────────────────────────────────── */
/* Form sem box quando está dentro da hero */
.yara-hero .yara-form-wrap {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 12px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.yara-form-wrap {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--yara-border);
    border-radius: var(--yara-r);
    padding: 28px 22px;
    margin-bottom: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.yara-form-wrap--final {
    background: var(--yara-dark-3);
    border-color: rgba(200, 74, 110, 0.2);
    box-shadow: 0 0 48px rgba(200, 74, 110, 0.08);
}

.yara-form__lead {
    font-size: 0.9rem;
    color: var(--yara-muted);
    text-align: center;
    margin-bottom: 18px;
    line-height: 1.5;
}

.yara-form__lead strong {
    color: #fff;
}

.yara-form__field {
    position: relative;
    margin-bottom: 12px;
}

.yara-form__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.yara-form input[type="text"],
.yara-form input[type="tel"],
.yara-form input[type="email"] {
    display: block;
    width: 100%;
    padding: 15px 15px 15px 46px;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--yara-r-sm);
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color var(--yara-transition), background var(--yara-transition);
    -webkit-appearance: none;
}

.yara-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.yara-form input:focus {
    border-color: var(--yara-primary);
    background: rgba(255, 255, 255, 0.11);
}

.yara-form .yara-btn {
    margin-top: 8px;
    font-size: 1.05rem;
}

.yara-form__message {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--yara-r-sm);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
}

.yara-form__message--success {
    background: rgba(0, 200, 100, 0.12);
    border: 1px solid rgba(0, 200, 100, 0.3);
    color: #33d98b;
}

.yara-form__message--error {
    background: rgba(255, 0, 80, 0.1);
    border: 1px solid rgba(255, 0, 80, 0.3);
    color: #ff5a5a;
}

.yara-trust {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 14px;
    line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────
   NUMBERS / PROVA SOCIAL
   ───────────────────────────────────────────────────────────── */
.yara-numbers {
    background: var(--yara-dark);
    padding-block: 40px;
    border-top: 1px solid var(--yara-border);
    border-bottom: 1px solid var(--yara-border);
    position: relative;
    overflow: hidden;
}

.yara-numbers::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(200,74,110,.07) 0%, transparent 70%);
    pointer-events: none;
}

.yara-numbers__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    text-align: center;
    position: relative;
}

.yara-numbers__item {
    padding: 12px 16px;
    position: relative;
}

/* linhas divisórias entre os itens */
.yara-numbers__item:nth-child(odd)  { border-right: 1px solid var(--yara-border); }
.yara-numbers__item:nth-child(1),
.yara-numbers__item:nth-child(2)    { border-bottom: 1px solid var(--yara-border); }

.yara-numbers__num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--yara-primary);
}

.yara-numbers__label {
    font-size: 0.72rem;
    color: var(--yara-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────────────────────────
   RESULTS / DEPOIMENTOS
   ───────────────────────────────────────────────────────────── */
.yara-results {
    padding-block: 64px;
    background: var(--yara-dark-2);
    text-align: center;
}
.yara-results .yara-card {
    background: var(--yara-dark-3);
    border-color: var(--yara-border);
    box-shadow: var(--yara-shadow);
}
.yara-results .yara-card:hover {
    border-color: rgba(200, 74, 110, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ─────────────────────────────────────────────────────────────
   CARROSSEL INFINITO DE FOTOS DE RESULTADOS
   ───────────────────────────────────────────────────────────── */
.yara-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-block: 40px 48px;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.yara-carousel__track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: yara-marquee 32s linear infinite;
}

.yara-carousel:hover .yara-carousel__track {
    animation-play-state: paused;
}

@keyframes yara-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.yara-carousel__item {
    flex-shrink: 0;
    width: 240px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    background: var(--yara-dark-3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yara-carousel__item:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.yara-carousel__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Horizontal scroll track for cards */
.yara-results__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-inline: -20px;
    padding-inline: 20px;
    padding-block-end: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.yara-results__track::-webkit-scrollbar {
    display: none;
}

.yara-card {
    flex: 0 0 270px;
    background: var(--yara-dark-3);
    border: 1px solid var(--yara-border);
    border-radius: var(--yara-r);
    padding: 22px 20px;
    text-align: left;
    scroll-snap-align: start;
    box-shadow: var(--yara-shadow);
    transition: transform var(--yara-transition), border-color var(--yara-transition);
}

.yara-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 74, 110, 0.3);
}

.yara-card__stars {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #f9d423;
    margin-bottom: 12px;
}

.yara-card__quote {
    font-size: 0.9rem;
    color: var(--yara-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.yara-card__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.yara-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--yara-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.yara-card__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.yara-results__cta {
    margin-top: 36px;
}

/* ─────────────────────────────────────────────────────────────
   O QUE É
   ───────────────────────────────────────────────────────────── */
/* ──────────────────────────────────────────────────────────────
   O QUE É O DESAFIO
   ───────────────────────────────────────────────────────────── */
.yara-about {
    padding-block: 72px;
    background: var(--yara-dark-2);
    text-align: center;
}

.yara-about .yara-section-title span {
    background: var(--yara-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yara-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
    text-align: left;
}

.yara-about__lead {
    background: rgba(200, 74, 110, 0.07);
    border: 1px solid rgba(200, 74, 110, 0.2);
    border-radius: 18px;
    padding: 28px 26px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--yara-text);
    grid-column: 1 / -1;
}

.yara-about__lead strong {
    color: var(--yara-primary);
    font-weight: 700;
}

.yara-about__pill {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--yara-dark-3);
    border: 1px solid var(--yara-border);
    border-radius: 16px;
    padding: 20px 20px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.yara-about__pill:hover {
    border-color: rgba(224, 122, 58, 0.35);
    transform: translateY(-3px);
}

.yara-about__pill-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(224, 122, 58, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yara-secondary);
    margin-top: 2px;
}

.yara-about__pill div:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.yara-about__pill strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--yara-text);
    line-height: 1.3;
}

.yara-about__pill span {
    font-size: 0.82rem;
    color: var(--yara-muted);
    line-height: 1.55;
}

@media (min-width: 760px) {
    .yara-about__grid {
        grid-template-columns: 1fr 1fr;
    }
    .yara-about__lead {
        grid-column: 1 / -1;
    }
}

/* ─────────────────────────────────────────────────────────────
   O QUE ESTÁ INCLUSO
   ───────────────────────────────────────────────────────────── */
.yara-what {
    padding-block: 72px;
    background: var(--yara-dark);
    text-align: center;
}

.yara-what__text {
    color: var(--yara-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 580px;
    margin-inline: auto;
}

/* ── Feature cards grid ── */
.yara-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 44px;
    text-align: left;
}

.yara-feature-card {
    background: var(--yara-dark-3);
    border: 1px solid var(--yara-border);
    border-radius: 18px;
    padding: 24px 22px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.yara-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(200, 74, 110, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.yara-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 74, 110, 0.35);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.yara-feature-card:hover::before {
    opacity: 1;
}

.yara-feature-card__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    background: rgba(224, 122, 58, 0.14);
    border: 1px solid rgba(224, 122, 58, 0.42);
    border-radius: 14px;
    color: var(--yara-secondary);
    box-shadow: 0 0 14px rgba(224, 122, 58, 0.28);
}

.yara-feature-card__icon svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--yara-secondary);
}

.yara-feature-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--yara-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.yara-feature-card__desc {
    font-size: 0.85rem;
    color: var(--yara-muted);
    line-height: 1.65;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   STORY / COPY
   ───────────────────────────────────────────────────────────── */
.yara-story {
    padding-block: 64px 48px;
    background: var(--yara-dark-3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.yara-story__quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 7rem;
    font-weight: 900;
    color: rgba(200, 74, 110, 0.12);
    line-height: 0.8;
    margin-bottom: -10px;
    user-select: none;
}

.yara-story__headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 28px;
}

.yara-story__body {
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 0;
    text-align: left;
}

.yara-story__body p {
    color: var(--yara-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.yara-story__body p:last-child {
    margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────
   CREATOR
   ───────────────────────────────────────────────────────────── */
.yara-creator {
    padding-block: 80px;
    background: var(--yara-dark-3);
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid rgba(200,74,110,.15);
}

/* Orb de fundo */
.yara-creator__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(200,74,110,.1) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 30%, rgba(224,122,58,.07) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Layout principal */
.yara-creator__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

/* Foto */
.yara-creator__photo-wrap {
    position: relative;
    flex-shrink: 0;
}

.yara-creator__photo {
    width: 280px;
    height: 360px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center top;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow:
        0 0 0 1px rgba(200,74,110,.3),
        0 32px 72px rgba(0,0,0,.55);
}

.yara-creator__photo--empty {
    width: 280px;
    height: 360px;
    border-radius: 20px;
    background: var(--yara-dark);
    border: 1px solid var(--yara-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--yara-muted);
    position: relative;
    z-index: 1;
}

.yara-creator__photo--empty small {
    font-size: 0.7rem;
    color: var(--yara-muted);
    text-align: center;
    padding-inline: 24px;
    line-height: 1.5;
}

/* Glow embaixo da foto */
.yara-creator__photo-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    border-radius: 50%;
    background: rgba(200,74,110,.25);
    filter: blur(28px);
    z-index: 0;
}

/* Conteúdo textual */
.yara-creator__content {
    text-align: center;
    max-width: 520px;
}

.yara-creator__name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    color: #fff;
    margin-top: 10px;
    margin-bottom: 6px;
    line-height: 1.2;
}

.yara-creator__role {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--yara-primary);
    font-weight: 600;
    margin-bottom: 24px;
}

/* Pills de credenciais */
.yara-creator__credentials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    text-align: left;
    display: inline-flex;
}

.yara-creator__cred {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--yara-text);
    background: rgba(200,74,110,.08);
    border: 1px solid rgba(200,74,110,.2);
    border-radius: 100px;
    padding: 7px 16px;
}

.yara-creator__cred svg {
    color: var(--yara-primary);
    flex-shrink: 0;
}

.yara-creator__bio {
    color: var(--yara-muted);
    font-size: 0.95rem;
    line-height: 1.85;
    text-align: center;
}

/* Desktop: lado a lado */
@media (min-width: 860px) {
    .yara-creator__inner {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 64px;
    }
    .yara-creator__content {
        text-align: left;
        padding-top: 12px;
    }
    .yara-creator__bio {
        text-align: left;
    }
    .yara-creator__photo {
        width: 320px;
        height: 420px;
    }
    .yara-creator__photo--empty {
        width: 320px;
        height: 420px;
    }
}

/* ─────────────────────────────────────────────────────────────
   PRICING
   ──────────────────────────────────────────────────────────── */
.yara-pricing {
    padding-block: 100px 80px;
    background: var(--yara-dark-2);
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.yara-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 55%, rgba(200,74,110,.22) 0%, transparent 60%),
        radial-gradient(circle at 12% 80%, rgba(224,122,58,.14) 0%, transparent 45%),
        radial-gradient(circle at 88% 20%, rgba(240,170,64,.10) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* Card principal */
.yara-pricing__block {
    max-width: 480px;
    margin-inline: auto;
    margin-top: 12px;
    position: relative;
    background: linear-gradient(160deg, rgba(200,74,110,.09) 0%, rgba(18,10,8,.65) 50%);
    border: 1px solid rgba(200,74,110,.38);
    border-radius: 24px;
    padding: 36px 36px 28px;
    box-shadow:
        0 0 70px rgba(200,74,110,.16),
        0 0 0 1px rgba(255,255,255,.04) inset,
        0 28px 64px rgba(0,0,0,.55);
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* Shimmer sweep */
.yara-pricing__block::before {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
    transform: skewX(-18deg);
    animation: yara-pricing-shine 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Barra de gradiente no topo do card */
.yara-pricing__block::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 180px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--yara-primary), var(--yara-cta), var(--yara-primary), transparent);
    filter: blur(0.5px);
}

@keyframes yara-pricing-shine {
    0%   { left: -80%; }
    60%  { left: 140%; }
    100% { left: 140%; }
}

/* Pill de urgência no topo */
.yara-pricing__top-bar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--yara-cta);
    margin-bottom: 16px;
    background: rgba(240,170,64,.1);
    border: 1px solid rgba(240,170,64,.28);
    border-radius: 100px;
    padding: 5px 14px;
    position: relative;
    z-index: 1;
}

/* Countdown */
.yara-pricing__countdown {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.yara-pricing__countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(200,74,110,.12);
    border: 1px solid rgba(200,74,110,.3);
    border-radius: 10px;
    padding: 8px 14px;
    min-width: 62px;
}

.yara-pricing__countdown-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--yara-primary);
    line-height: 1;
}

.yara-pricing__countdown-label {
    font-size: 0.54rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--yara-muted);
    margin-top: 4px;
}

.yara-pricing__countdown-sep {
    font-size: 1.9rem;
    font-weight: 900;
    color: rgba(200,74,110,.5);
    align-self: center;
    margin-bottom: 10px;
    line-height: 1;
}

/* Preço riscado */
.yara-pricing__from {
    font-size: 0.88rem;
    color: var(--yara-muted);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.yara-pricing__from s {
    color: rgba(255,255,255,.38);
    text-decoration-color: rgba(200,74,110,.6);
}

/* Bloco de preço */
.yara-pricing__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.yara-pricing__currency {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yara-text);
    margin-top: 16px;
}

.yara-pricing__amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 0 28px rgba(200,74,110,.5);
}

.yara-pricing__period {
    font-size: 0.85rem;
    color: var(--yara-muted);
    align-self: flex-end;
    margin-bottom: 14px;
}

.yara-pricing__or {
    font-size: 0.9rem;
    color: var(--yara-muted);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.yara-pricing__or strong { color: var(--yara-text); }

/* Título da lista */
.yara-pricing__perks-title {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--yara-muted);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

/* Benefícios */
.yara-pricing__perks {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 28px;
    padding: 18px 0;
    border-top: 1px solid var(--yara-border);
    border-bottom: 1px solid var(--yara-border);
    position: relative;
    z-index: 1;
}

.yara-pricing__perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--yara-text);
    line-height: 1.4;
}

.yara-pricing__perks li svg {
    color: var(--yara-cta);
    flex-shrink: 0;
}

/* CTA */
.yara-pricing__cta {
    width: 100%;
    display: block;
    padding-block: 18px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Trust badges */
.yara-pricing__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--yara-border);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.yara-pricing__trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 70px;
}

.yara-pricing__trust-item svg {
    color: var(--yara-muted);
    opacity: 0.65;
}

.yara-pricing__trust-item span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--yara-muted);
    line-height: 1.4;
}

/* Vagas pill abaixo do card */
.yara-pricing__vagas {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--yara-muted);
    margin-top: 32px;
    background: rgba(240,170,64,.07);
    border: 1px solid rgba(240,170,64,.2);
    border-radius: 100px;
    padding: 8px 20px;
}

.yara-pricing__vagas strong { color: var(--yara-cta); }
.yara-pricing__vagas svg   { color: var(--yara-cta); flex-shrink: 0; }

@media (max-width: 520px) {
    .yara-pricing__block {
        padding: 28px 20px 24px;
        border-radius: 18px;
    }
    .yara-pricing__amount         { font-size: 5rem; }
    .yara-pricing__countdown-unit { padding: 6px 10px; min-width: 50px; }
    .yara-pricing__countdown-num  { font-size: 1.5rem; }
    .yara-pricing__trust          { gap: 16px; }
}

/* ─────────────────────────────────────────────────────────────
   CTA FINAL
   ───────────────────────────────────────────────────────────── */
.yara-cta-final {
    position: relative;
    padding-block: 100px 80px;
    background: var(--yara-dark);
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

/* Linha de gradiente animada no topo */
.yara-cta-final::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--yara-primary) 20%,
        var(--yara-cta) 50%,
        var(--yara-primary) 80%,
        transparent 100%);
    background-size: 200% 100%;
    animation: yara-cta-line 4s linear infinite;
}

@keyframes yara-cta-line {
    0%   { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* Fundo com grade sutil */
.yara-cta-final__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200,74,110,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,74,110,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: -1;
}

/* Orbs de luz */
.yara-cta-final__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(60px);
}

.yara-cta-final__orb--1 {
    width: 600px;
    height: 600px;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(200,74,110,.18) 0%, transparent 65%);
}

.yara-cta-final__orb--2 {
    width: 340px;
    height: 340px;
    bottom: -60px;
    right: 8%;
    background: radial-gradient(circle, rgba(240,170,64,.12) 0%, transparent 65%);
}

/* Badge de urgência */
.yara-cta-final__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--yara-cta);
    background: rgba(240,170,64,.1);
    border: 1px solid rgba(240,170,64,.3);
    border-radius: 100px;
    padding: 7px 18px;
    margin-bottom: 28px;
}

.yara-cta-final__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yara-cta);
    box-shadow: 0 0 10px var(--yara-cta);
    animation: yara-pulse-dot 1.5s ease-in-out infinite;
}

@keyframes yara-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.75); }
}

/* Título */
.yara-cta-final__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 18px;
}

.yara-cta-final__title span {
    color: var(--yara-primary);
    display: inline-block;
}

/* Subtítulo */
.yara-cta-final__sub {
    color: var(--yara-muted);
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 480px;
    margin-inline: auto;
}

/* Mini stats */
.yara-cta-final__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.yara-cta-final__stat {
    display: flex;
    flex-direction: column;
    padding: 0 28px;
}

.yara-cta-final__stat strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.yara-cta-final__stat span {
    font-size: 0.72rem;
    color: var(--yara-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.yara-cta-final__stat-div {
    width: 1px;
    height: 36px;
    background: var(--yara-border);
    flex-shrink: 0;
}

/* Trust bar */
.yara-cta-final__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.yara-cta-final__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--yara-muted);
}

.yara-cta-final__trust-item svg {
    color: rgba(255,255,255,.3);
    flex-shrink: 0;
}

.yara-cta-final__trust-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--yara-border);
}

@media (max-width: 520px) {
    .yara-cta-final__stats { gap: 16px 0; }
    .yara-cta-final__stat  { padding: 0 16px; }
    .yara-cta-final__stat-div { display: none; }
    .yara-cta-final__trust { gap: 8px; }
    .yara-cta-final__trust-dot { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.yara-footer {
    padding-block: 24px;
    background: var(--yara-dark);
    text-align: center;
    border-top: 1px solid var(--yara-border);
}

.yara-footer p {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────
   SCROLL REVEAL
   ───────────────────────────────────────────────────────────── */
.yara-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.yara-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* stagger for cards */
.yara-results__track .yara-card.yara-reveal { transition-delay: 0.08s; }
.yara-results__track .yara-card:nth-child(2).yara-reveal { transition-delay: 0.18s; }
.yara-results__track .yara-card:nth-child(3).yara-reveal { transition-delay: 0.28s; }
.yara-results__track .yara-card:nth-child(4).yara-reveal { transition-delay: 0.38s; }

/* stagger for benefits */
.yara-benefits .yara-benefits__item.yara-reveal { transition-delay: 0.06s; }
.yara-benefits .yara-benefits__item:nth-child(2).yara-reveal { transition-delay: 0.12s; }
.yara-benefits .yara-benefits__item:nth-child(3).yara-reveal { transition-delay: 0.18s; }
.yara-benefits .yara-benefits__item:nth-child(4).yara-reveal { transition-delay: 0.24s; }
.yara-benefits .yara-benefits__item:nth-child(5).yara-reveal { transition-delay: 0.30s; }

/* ─────────────────────────────────────────────────────────────
   TABLET (≥ 600px)
   ───────────────────────────────────────────────────────────── */
@media (min-width: 600px) {
    .yara-hero__title {
        font-size: 2.4rem;
    }

    .yara-section-title {
        font-size: 2.1rem;
    }

    .yara-numbers__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .yara-results__track {
        flex-wrap: wrap;
        overflow-x: visible;
        margin-inline: 0;
        padding-inline: 0;
        justify-content: center;
    }

    .yara-card {
        flex: 0 0 calc(50% - 8px);
    }

    .yara-btn {
        max-width: 420px;
        margin-inline: auto;
    }

    .yara-form .yara-btn {
        max-width: none;
    }
}

/* ─────────────────────────────────────────────────────────────
   DESKTOP (≥ 860px)
   ───────────────────────────────────────────────────────────── */
@media (min-width: 860px) {
    .yara-container {
        max-width: 780px;
    }

    .yara-container--wide {
        max-width: 1100px;
        margin-inline: auto;
        padding-inline: clamp(20px, 4vw, 72px);
    }

    .yara-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .yara-hero__title {
        font-size: 3.0rem;
    }

    .yara-card {
        flex: 0 0 calc(25% - 12px);
    }

    .yara-story__headline {
        font-size: 1.9rem;
    }

    .yara-cta-final__title {
        font-size: 2.2rem;
    }
}
