/* =========================================================
   Nutricionista Digital — Sistema de design "Editorial Botânico"
   Papel quente + verde floresta + damasco. Fraunces / Karla.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
    /* Superfícies */
    --paper: #FAF5EC;
    --paper-2: #F3EADA;
    --paper-3: #EADFC9;
    --paper-card: #FFFCF6;

    /* Tinta */
    --ink: #142219;
    --ink-2: #2B3B31;
    --ink-soft: #5E6E63;

    /* Verdes */
    --forest: #143024;
    --forest-2: #1D4433;
    --leaf: #5DA840;
    --leaf-deep: #376C25;
    --leaf-tint: #E4EFDA;

    /* Acento */
    --apricot: #D8662A;
    --apricot-texto: #AC4C1B;
    --apricot-2: #E98F4F;
    --apricot-tint: #F8E5D6;

    /* Linhas e sombras */
    --line: rgba(20, 34, 25, 0.14);
    --line-strong: rgba(20, 34, 25, 0.26);
    --line-light: rgba(250, 245, 236, 0.18);
    --shadow-sm: 0 1px 2px rgba(20, 34, 25, 0.06);
    --shadow-md: 0 18px 40px -24px rgba(20, 34, 25, 0.45);
    --shadow-lg: 0 34px 70px -32px rgba(20, 34, 25, 0.5);

    /* Tipografia */
    --display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
    --sans: "Karla", "Segoe UI", Tahoma, sans-serif;

    /* Métrica */
    --header-h: 78px;
    --radius: 18px;
    --radius-lg: 28px;
    --arch: 999px 999px 26px 26px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);

    /* Compatibilidade com folhas antigas */
    --primary-color: #376C25;
    --primary-dark: #143024;
    --secondary-color: #D8662A;
    --text-dark: #142219;
    --text-light: #5E6E63;
    --bg-light: #F3EADA;
    --bg-medium: #EADFC9;
    --bg-white: #FFFCF6;
    --border-color: rgba(20, 34, 25, 0.14);
    --shadow: 0 1px 2px rgba(20, 34, 25, 0.06);
    --shadow-hover: 0 18px 40px -24px rgba(20, 34, 25, 0.45);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.62;
    color: var(--ink);
    background: var(--paper);
    padding-top: var(--header-h);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Grão sobre todo o site */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.32;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.14'/%3E%3C/svg%3E");
}

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

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

/* Toque: sem atraso de 300ms e sem flash azul do sistema */
a,
button,
[role="button"],
input,
select,
label {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(20, 34, 25, 0.06);
}

/* Âncoras e resultados não ficam escondidos sob o header fixo */
[id] {
    scroll-margin-top: calc(var(--header-h) + 16px);
}

::selection {
    background: var(--apricot);
    color: #fff;
}

:focus-visible {
    outline: 2px solid var(--apricot);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---------- Tipografia ---------- */
h1,
h2,
h3,
h4 {
    font-family: var(--display);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-optical-sizing: auto;
}

h1 {
    font-size: clamp(42px, 6.4vw, 84px);
    font-weight: 500;
}

h2 {
    font-size: clamp(30px, 3.9vw, 52px);
    font-weight: 500;
}

h3 {
    font-size: clamp(19px, 1.5vw, 23px);
    line-height: 1.22;
    letter-spacing: -0.01em;
}

p {
    color: var(--ink-2);
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

/* Palavra destacada dentro de títulos */
.ink-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--apricot);
}

.ink-leaf {
    font-style: italic;
    font-weight: 400;
    color: var(--leaf-deep);
}

/* Etiqueta de seção */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--leaf-deep);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: currentColor;
    opacity: 0.65;
}

.eyebrow--light {
    color: var(--apricot-2);
}

.eyebrow--center {
    justify-content: center;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 28px;
}

main > section {
    position: relative;
    padding: clamp(64px, 8vw, 118px) 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: clamp(38px, 5vw, 62px);
}

/* título à esquerda, texto de apoio à direita, alinhados pela base */
.section-head.duas-colunas {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(20px, 4vw, 60px);
    align-items: end;
}

.section-head.duas-colunas h2 {
    max-width: 16ch;
    margin: 0;
}

.section-head.duas-colunas > p {
    margin: 0 0 6px;
    max-width: 46ch;
    font-size: 17.5px;
    line-height: 1.68;
}

.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head p {
    margin-top: 18px;
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 62ch;
}

.section-head--center p {
    margin-left: auto;
    margin-right: auto;
}

.section-head p a {
    color: var(--leaf-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    transition: color 0.3s var(--ease);
}

.section-head p a:hover {
    color: var(--apricot-texto);
}

.section-icon {
    display: none;
}

/* Padrão editorial: título à esquerda, corpo à direita */
.secao-split .container {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(28px, 4.5vw, 70px);
    align-items: start;
}

.split-head {
    position: sticky;
    top: calc(var(--header-h) + 28px);
}

.split-head h2 {
    max-width: 17ch;
    margin-bottom: 0;
    font-size: clamp(26px, 2.7vw, 36px);
}

.split-apoio {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    max-width: 30ch;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink-soft);
}

.location-gyn .split-apoio,
.dados-rapidos .split-apoio {
    border-top-color: var(--line-light);
    color: rgba(250, 245, 236, 0.72);
}

.split-corpo {
    max-width: 64ch;
}

.split-corpo p {
    font-size: 17px;
    line-height: 1.78;
    color: var(--ink-2);
    margin-bottom: 20px;
}

.split-corpo > p:first-child {
    font-size: clamp(18.5px, 1.5vw, 21px);
    line-height: 1.68;
    color: var(--ink);
}

.split-corpo a {
    color: var(--leaf-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.split-corpo a:hover {
    color: var(--apricot-texto);
}

.split-corpo > *:last-child {
    margin-bottom: 0;
}

.split-corpo p {
    font-size: 17px;
    line-height: 1.78;
    color: var(--ink-2);
    margin-bottom: 20px;
}

.split-corpo > p:first-child {
    font-family: var(--sans);
    font-size: clamp(18.5px, 1.5vw, 21px);
    font-weight: 400;
    line-height: 1.68;
    color: var(--ink);
}


/* ---------- Faixas escuras: trava contra texto escuro sobre fundo escuro ----------
   Qualquer parágrafo, item de lista ou destaque dentro de uma faixa verde herda
   a tinta clara, mesmo que a página reaproveite uma classe pensada para fundo claro. */
:is(.differentials,
    .mission-vision,
    .location-gyn,
    .dados-rapidos,
    .final-cta,
    .tools-cta,
    .seo-cta,
    .method-card.primary,
    .service-card-featured,
    .specialty-card-enhanced.destaque,
    .calculator-result,
    .cookie-banner) :is(p, li, dd, td, strong, em, blockquote) {
    color: rgba(250, 245, 236, 0.84);
}

:is(.differentials,
    .mission-vision,
    .location-gyn,
    .dados-rapidos,
    .final-cta,
    .tools-cta,
    .seo-cta,
    .method-card.primary,
    .service-card-featured,
    .specialty-card-enhanced.destaque,
    .calculator-result) :is(h2, h3, h4) {
    color: var(--paper);
}

/* ---------- Ícones ---------- */
.benefit-icon,
.step-icon,
.service-icon,
.diff-icon,
.method-icon,
.tool-icon,
.expertise-icon,
.mv-icon,
.reason-icon,
.specialty-icon,
.diff-gyn-icon,
.location-icon,
.loc-icon,
.schedule-icon,
.badge-icon {
    width: 26px;
    height: 26px;
    padding: 13px;
    box-sizing: content-box;
    border-radius: 50%;
    background: var(--leaf-tint);
    opacity: 0.92;
}

.diff-icon,
.badge-icon,
.badge-icon-small,
.benefit-check,
.loc-icon {
    width: 17px;
    height: 17px;
    padding: 9px;
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* trava contra regra de contexto que estica imagem generica (ex.: o corpo do
   artigo, onde .post-corpo img aplicava width:100%). Nao fixa o tamanho, so
   impede o estouro, para o header e o footer manterem seus 18px proprios */
:is(button, a) > .btn-icon {
    max-width: 24px;
    max-height: 24px;
    margin: 0;
    border: 0;
    border-radius: 0;
}

/* ---------- Botões ---------- */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 15px 30px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--paper);
    background: var(--forest);
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: var(--transition);
}

.cta-button .btn-icon {
    filter: invert(1);
}

.cta-button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--apricot-texto);
    transform: translateY(101%);
    transition: transform 0.4s var(--ease);
}

.cta-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button:hover::before {
    transform: translateY(0);
}

.cta-button.large {
    min-height: 62px;
    padding: 19px 40px;
    font-size: 16px;
}

/* No toque não existe hover: a resposta vem no :active */
.cta-button:active,
.header-cta:active,
.footer-cta:active,
.calc-button:active,
.wa-float:active {
    transform: scale(0.975);
}

.service-card:active,
.service-card-link:active,
.service-card-featured:active,
.tool-card:active,
.erro-card:active,
.press-card:active {
    transform: scale(0.99);
}

/* Variante contornada, para fundos claros */
.cta-button.secondary {
    background: transparent;
    color: var(--forest);
    box-shadow: inset 0 0 0 1px var(--line-strong);
}

/* Variante clara, para fundos escuros */
.final-cta .cta-button,
.tools-cta .cta-button,
.location-gyn .cta-button {
    background: var(--paper);
    color: var(--forest);
}

.cta-button.secondary .btn-icon,
.final-cta .cta-button .btn-icon,
.tools-cta .cta-button .btn-icon,
.location-gyn .cta-button .btn-icon {
    filter: none;
}

.cta-button.secondary:hover,
.final-cta .cta-button:hover,
.tools-cta .cta-button:hover,
.location-gyn .cta-button:hover {
    box-shadow: inset 0 0 0 1px transparent, var(--shadow-md);
}

.cta-button.secondary:hover .btn-icon,
.final-cta .cta-button:hover .btn-icon,
.tools-cta .cta-button:hover .btn-icon,
.location-gyn .cta-button:hover .btn-icon {
    filter: invert(1);
}

/* Link de texto com sublinhado que cresce */
.service-link,
.specialty-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--apricot-texto);
    padding-bottom: 3px;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
    transition: background-size 0.4s var(--ease);
}

a:hover .service-link,
.specialty-btn:hover,
.text-link:hover {
    background-size: 100% 1px;
}

/* ---------- Botão flutuante WhatsApp ---------- */
.wa-float {
    position: fixed;
    right: calc(16px + env(safe-area-inset-right, 0px));
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    z-index: 9990;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--leaf-deep);
    box-shadow: 0 14px 30px -10px rgba(20, 34, 25, 0.6);
    transition: var(--transition);
}

.wa-float img {
    width: 28px;
    height: 28px;
    filter: invert(1);
}

.wa-float::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid var(--leaf-deep);
    opacity: 0;
    animation: waPulse 3.4s ease-out infinite;
}

.wa-float:hover {
    background: var(--forest);
    transform: scale(1.06);
}

@keyframes waPulse {
    0% { transform: scale(0.86); opacity: 0.7; }
    70% { transform: scale(1.25); opacity: 0; }
    100% { opacity: 0; }
}

/* ---------- Revelação ao scroll ----------
   A classe .will-reveal é aplicada pelo main.js só depois que o
   IntersectionObserver está pronto: sem JS, nada fica invisível. */
.will-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.will-reveal.animate-in {
    opacity: 1;
    transform: none;
}

/* Entrada da dobra inicial */
.hero-content > *,
.hero-nutri-content > *,
.hero-gyn-content > *,
.hero-tools > *,
.hero-contato-content > * {
    animation: riseIn 0.9s var(--ease) both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.13s; }
.hero-content > *:nth-child(3) { animation-delay: 0.21s; }
.hero-content > *:nth-child(4) { animation-delay: 0.29s; }
.hero-content > *:nth-child(5) { animation-delay: 0.37s; }
.hero-content > *:nth-child(6) { animation-delay: 0.45s; }

@keyframes riseIn {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero,
.hero-nutricionista,
.hero-goiania,
.hero-tools,
.hero-contato {
    position: relative;
    padding: clamp(48px, 6vw, 86px) 0 clamp(56px, 7vw, 96px);
    background: var(--paper);
    overflow: hidden;
}

/* Malha de pontos de fundo */
.hero::before,
.hero-nutricionista::before,
.hero-goiania::before,
.hero-tools::before,
.hero-contato::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(20, 34, 25, 0.14) 1px, transparent 0);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 10%, #000 0%, transparent 72%);
    mask-image: radial-gradient(ellipse 80% 60% at 70% 10%, #000 0%, transparent 72%);
    opacity: 0.55;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(30px, 5vw, 72px);
}

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

.hero h1 {
    margin-bottom: 16px;
}

.hero-h2 {
    font-family: var(--display);
    font-size: clamp(21px, 2.1vw, 27px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.28;
    letter-spacing: -0.01em;
    color: var(--leaf-deep);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.66;
    color: var(--ink-soft);
    max-width: 52ch;
    margin-bottom: 30px;
}

/* Linha de credenciais */
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    margin-bottom: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-meta span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--leaf);
}

/* Números da dobra */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 44px;
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.hero-stats div {
    min-width: 108px;
}

.hero-stats b {
    display: block;
    font-family: var(--display);
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 500;
    line-height: 1;
    color: var(--forest);
}

.hero-stats span {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

/* Retrato em arco */
.hero-image,
.hero-nutri-image,
.hero-gyn-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    animation: riseIn 1.1s var(--ease) 0.2s both;
}

.hero-image::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(100%, 430px);
    height: 92%;
    border-radius: var(--arch);
    background:
        radial-gradient(120% 80% at 50% 0%, #2C6144 0%, transparent 60%),
        linear-gradient(170deg, #1D4433 0%, #143024 58%, #0E2419 100%);
    box-shadow: var(--shadow-lg);
}

.hero-image::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(100%, 430px);
    height: 92%;
    border-radius: var(--arch);
    border: 1px solid rgba(250, 245, 236, 0.14);
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(250, 245, 236, 0.05) 0 1px,
        transparent 1px 9px
    );
    pointer-events: none;
}

.hero-photo {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
    height: auto;
    filter: drop-shadow(0 26px 40px rgba(20, 34, 25, 0.34));
}

/* Fotos de ambiente ganham moldura em arco */
.nutri-photo,
.gyn-photo {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
    height: auto;
    border-radius: var(--arch);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.hero-nutri-image::before,
.hero-gyn-image::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: -18px;
    transform: translateX(calc(-50% + 22px));
    width: min(100%, 430px);
    height: 88%;
    border-radius: var(--arch);
    border: 1px solid var(--leaf-deep);
    opacity: 0.5;
}

/* Selos flutuantes sobre a foto */
.hero-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    border-radius: 999px;
    background: var(--paper-card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--forest);
    white-space: nowrap;
    animation: floatChip 6s ease-in-out infinite;
}

.hero-chip::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--leaf);
    box-shadow: 0 0 0 4px rgba(93, 168, 64, 0.2);
}

.hero-chip--top {
    top: 16%;
    left: -6px;
}

.hero-chip--bottom {
    bottom: 15%;
    right: -6px;
    animation-delay: 1.4s;
}

.hero-chip--bottom::before {
    background: var(--apricot);
    box-shadow: 0 0 0 4px rgba(216, 102, 42, 0.18);
}

@keyframes floatChip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

/* Estrelas herdadas viram folhas flutuantes */
.shooting-star {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 60% 0 60% 0;
    background: var(--leaf);
    opacity: 0.24;
    pointer-events: none;
    animation: drift 16s linear infinite;
}

.shooting-star:nth-child(1) { top: 14%; left: 6%; animation-delay: 0s; }
.shooting-star:nth-child(2) { top: 62%; left: 12%; animation-delay: 3s; background: var(--apricot); }
.shooting-star:nth-child(3) { top: 24%; left: 46%; animation-delay: 6s; }
.shooting-star:nth-child(4) { top: 78%; left: 38%; animation-delay: 9s; background: var(--apricot); }
.shooting-star:nth-child(5) { top: 40%; left: 88%; animation-delay: 12s; }

@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
    12% { opacity: 0.28; }
    88% { opacity: 0.28; }
    100% { transform: translate(38px, -110px) rotate(200deg); opacity: 0; }
}

/* =========================================================
   FAIXA MARQUEE
   ========================================================= */
.ticker {
    padding: 0;
    background: var(--forest);
    border-top: 1px solid rgba(250, 245, 236, 0.1);
    border-bottom: 1px solid rgba(250, 245, 236, 0.1);
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: marquee 42s linear infinite;
}

.ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding: 20px 30px 20px 0;
    font-family: var(--display);
    font-size: clamp(19px, 2.1vw, 27px);
    font-style: italic;
    font-weight: 400;
    color: var(--paper);
    white-space: nowrap;
}

.ticker-track span::after {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 60% 0 60% 0;
    background: var(--apricot);
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

/* =========================================================
   BENEFÍCIOS
   ========================================================= */
.benefits {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.benefits h2,
.how-it-works h2,
.services h2,
.differentials h2,
.faq h2 {
    max-width: 18ch;
}

.benefits > .container > h2,
.how-it-works > .container > h2,
.services > .container > h2,
.faq > .container > h2 {
    margin-bottom: clamp(36px, 4.6vw, 58px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.benefit-card {
    position: relative;
    background: var(--paper);
    padding: 38px 30px 34px;
    transition: background 0.4s var(--ease), transform 0.6s var(--ease), opacity 0.6s var(--ease);
}

.benefit-card:hover {
    background: var(--paper-card);
}

.benefit-card .benefit-icon {
    margin-bottom: 22px;
}

.benefit-card h3 {
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 15.5px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.benefit-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--apricot);
    transition: width 0.5s var(--ease);
}

.benefit-card:hover::after {
    width: 100%;
}

/* =========================================================
   COMO FUNCIONA
   ========================================================= */
.how-it-works {
    background: var(--paper-2);
}

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

.steps::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 6%;
    right: 6%;
    height: 1px;
    background-image: linear-gradient(to right, var(--line-strong) 50%, transparent 0);
    background-size: 10px 1px;
    background-repeat: repeat-x;
}

.step {
    position: relative;
    padding-top: 4px;
}

.step-number {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--paper);
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    box-shadow: 0 0 0 8px var(--paper-2);
}

.step-icon {
    margin-bottom: 18px;
    background: transparent;
    padding: 0;
    width: 30px;
    height: 30px;
    opacity: 0.55;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    font-size: 15.5px;
    color: var(--ink-soft);
}

.cta-center {
    margin-top: clamp(42px, 5vw, 64px);
    text-align: center;
}

/* =========================================================
   SERVIÇOS
   ========================================================= */
.services {
    background: var(--paper);
}

.services-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

.service-card,
.service-card-link,
.service-card-featured {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 34px 30px 30px;
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease), opacity 0.6s var(--ease);
}

.service-card:hover,
.service-card-link:hover,
.service-card-featured:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-strong);
}

.service-card p,
.service-card-link p,
.service-card-featured p {
    font-size: 15.5px;
    color: var(--ink-soft);
    flex-grow: 1;
}

.service-card-featured {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 32px;
    padding: 34px 36px;
    background:
        radial-gradient(90% 120% at 100% 0%, #23553D 0%, transparent 62%),
        linear-gradient(150deg, #1D4433 0%, #122C20 100%);
    border-color: transparent;
    color: var(--paper);
}

.service-card-featured h3 {
    flex: 0 1 auto;
    max-width: 12ch;
    color: var(--paper);
    font-size: clamp(24px, 2.4vw, 34px);
}

.service-card-featured p {
    flex: 1 1 240px;
    color: rgba(250, 245, 236, 0.78);
    max-width: 46ch;
}

.service-card-featured .service-link {
    flex: 0 0 auto;
}

.service-card-featured .service-icon {
    background: rgba(250, 245, 236, 0.1);
    filter: invert(1);
}

.service-card-featured .service-link {
    color: var(--apricot-2);
}

.featured-badge {
    position: absolute;
    top: 26px;
    right: 26px;
    padding: 7px 15px;
    border-radius: 999px;
    background: var(--apricot-texto);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* =========================================================
   DIFERENCIAIS (faixa escura)
   ========================================================= */
.differentials {
    background: var(--forest);
    color: var(--paper);
}

.differentials h2 {
    color: var(--paper);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 60px;
}

.differential-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line-light);
}

.differential-item .diff-icon {
    background: rgba(250, 245, 236, 0.08);
    filter: invert(1);
    flex-shrink: 0;
}

.differential-item p {
    font-size: 17px;
    color: rgba(250, 245, 236, 0.88);
}

/* =========================================================
   QUEM ATENDE (autoridade)
   ========================================================= */
.autora-home {
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.autora-home .container {
    display: grid;
    grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.autora-foto {
    margin: 0;
    position: relative;
}

.autora-foto img {
    width: 100%;
    height: auto;
    border-radius: var(--arch);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.autora-foto::after {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    z-index: -1;
    border: 1px solid var(--leaf-deep);
    border-radius: var(--arch);
    opacity: 0.45;
}

.autora-texto h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    margin-bottom: 18px;
}

.autora-texto > p {
    font-size: 17.5px;
    line-height: 1.75;
    color: var(--ink-2);
    max-width: 60ch;
    margin-bottom: 24px;
}

.credenciais {
    margin: 0 0 28px;
    max-width: 62ch;
}

.credenciais li {
    position: relative;
    padding: 12px 0 12px 30px;
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--ink-2);
    border-bottom: 1px solid var(--line);
}

.credenciais li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 23px;
    width: 8px;
    height: 8px;
    border-radius: 60% 0 60% 0;
    background: var(--leaf);
}

.credenciais strong {
    color: var(--ink);
}

.credenciais a {
    color: var(--leaf-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.credenciais a:hover {
    color: var(--apricot-texto);
}

@media (max-width: 900px) {
    .autora-home .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .autora-foto {
        max-width: 320px;
    }

    .autora-texto .cta-button {
        width: 100%;
    }
}

/* =========================================================
   NA MÍDIA
   ========================================================= */
.press {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
}

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

.press-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--paper-card);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), opacity 0.6s var(--ease);
}

.press-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    filter: saturate(0.35);
    transition: filter 0.5s var(--ease);
}

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

.press-card:hover img {
    filter: saturate(1);
}

.press-card figcaption {
    padding: 14px 16px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-align: center;
}

/* =========================================================
   BANNER DE COOKIES (LGPD)
   ========================================================= */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 9995;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: var(--forest);
    color: var(--paper);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px -20px rgba(20, 34, 25, 0.7);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.cookie-banner.visivel {
    opacity: 1;
    transform: none;
}

.cookie-texto strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.cookie-texto p {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(250, 245, 236, 0.78);
}

.cookie-texto a {
    color: var(--apricot-2);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-acoes {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition);
}

.cookie-recusar {
    color: var(--paper);
    box-shadow: inset 0 0 0 1px var(--line-light);
}

.cookie-recusar:hover {
    box-shadow: inset 0 0 0 1px var(--paper);
}

.cookie-aceitar {
    background: var(--paper);
    color: var(--forest);
}

.cookie-aceitar:hover {
    background: var(--apricot-texto);
    color: #fff;
}

@media (max-width: 720px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    }

    .cookie-acoes {
        flex-direction: column-reverse;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* =========================================================
   PÁGINAS DE DOCUMENTOS (privacidade, termos)
   ========================================================= */
.legal-hero {
    background: var(--paper);
    padding: clamp(44px, 5vw, 76px) 0 clamp(30px, 3vw, 44px);
    border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
    font-size: clamp(38px, 5vw, 66px);
    max-width: 16ch;
}

.legal-lede {
    margin-top: 18px;
    font-family: var(--display);
    font-size: clamp(19px, 1.9vw, 24px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    color: var(--leaf-deep);
    max-width: 56ch;
}

.legal-data {
    margin-top: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.legal,
.prosa {
    background: var(--paper-2);
}

.legal .container,
.prosa .container {
    max-width: 820px;
}

.prosa h2 {
    margin: 46px 0 18px;
    font-size: clamp(25px, 2.8vw, 34px);
    max-width: 24ch;
}

.prosa .eyebrow + h2 {
    margin-top: 0;
}

.prosa p {
    font-size: 17px;
    line-height: 1.82;
    color: var(--ink-2);
    margin-bottom: 18px;
}

.prosa a {
    color: var(--leaf-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prosa a:hover {
    color: var(--apricot-texto);
}

.prosa-lista {
    counter-reset: passo;
    margin: 0 0 24px;
}

.prosa-lista li {
    position: relative;
    padding: 12px 0 12px 42px;
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--ink-2);
    border-bottom: 1px solid var(--line);
}

ol.prosa-lista li::before {
    counter-increment: passo;
    content: counter(passo);
    position: absolute;
    left: 0;
    top: 12px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--forest);
    color: var(--paper);
    font-family: var(--display);
    font-size: 14px;
}

ul.prosa-lista li::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 60% 0 60% 0;
    background: var(--leaf);
}

.legal h2 {
    margin: 44px 0 16px;
    font-size: clamp(24px, 2.6vw, 32px);
    max-width: 26ch;
}

.legal h2:first-child {
    margin-top: 0;
}

.legal p {
    font-size: 17px;
    line-height: 1.82;
    color: var(--ink-2);
    margin-bottom: 18px;
}

.legal a {
    color: var(--leaf-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal a:hover {
    color: var(--apricot-texto);
}

.legal-list {
    margin: 0 0 22px;
}

.legal-list li {
    position: relative;
    padding: 11px 0 11px 30px;
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--ink-2);
    border-bottom: 1px solid var(--line);
}

.legal-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 21px;
    width: 8px;
    height: 8px;
    border-radius: 60% 0 60% 0;
    background: var(--leaf);
}

/* =========================================================
   VEJA TAMBÉM (linkagem interna)
   ========================================================= */
.veja-tambem {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
}

.veja-tambem h2 {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: clamp(28px, 3.4vw, 42px);
}

.rel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.rel-card {
    display: block;
    padding: 30px 26px 28px;
    background: var(--paper-2);
    transition: background 0.4s var(--ease);
}

.rel-card:hover {
    background: var(--paper-card);
}

.rel-card h3 {
    font-size: 19px;
    color: var(--forest);
    margin-bottom: 9px;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(20, 34, 25, 0.22);
    transition: color 0.3s var(--ease), text-decoration-color 0.3s var(--ease);
}

.rel-card:hover h3 {
    color: var(--apricot-texto);
    text-decoration-color: currentColor;
}

.rel-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
}

@media (max-width: 900px) {
    .rel-grid {
        grid-template-columns: 1fr;
        border-radius: var(--radius);
    }
}

/* frase de ponte para o blog */
.leia-blog {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 16.5px;
    color: var(--ink-soft);
    max-width: 68ch;
}

.leia-blog a {
    color: var(--leaf-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.leia-blog a:hover { color: var(--apricot-texto); }

/* =========================================================
   DO BLOG (home)
   ========================================================= */
.do-blog {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
}

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

.mini-card {
    display: flex;
    flex-direction: column;
    gap: 9px;
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding-bottom: 24px;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

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

.mini-img {
    display: block;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: var(--paper-2);
    margin-bottom: 6px;
}

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

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

.mini-cat {
    padding: 0 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--leaf-deep);
}

.mini-card h3 {
    padding: 0 24px;
    font-size: 21px;
    color: var(--forest);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(20, 34, 25, 0.22);
    transition: color 0.3s var(--ease), text-decoration-color 0.3s var(--ease);
}

.mini-card:hover h3 {
    color: var(--apricot-texto);
    text-decoration-color: currentColor;
}

.mini-card p {
    padding: 0 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
    background: var(--paper);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 26px 0;
    cursor: pointer;
    min-height: 56px;
}

.faq-question h3 {
    font-family: var(--display);
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.3s var(--ease);
}

.faq-item:hover .faq-question h3,
.faq-item.active .faq-question h3 {
    color: var(--leaf-deep);
}

.faq-arrow {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 460px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 12% 30px 0;
    font-size: 16.5px;
    line-height: 1.72;
    color: var(--ink-soft);
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.final-cta,
.tools-cta,
.seo-cta {
    position: relative;
    background: var(--forest);
    color: var(--paper);
    text-align: center;
    overflow: hidden;
}

.final-cta::before,
.tools-cta::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -40%;
    width: min(780px, 96vw);
    height: 140%;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(93, 168, 64, 0.24), transparent 72%);
    pointer-events: none;
}

.final-cta .container,
.tools-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2,
.tools-cta h2 {
    max-width: 16ch;
    margin: 0 auto 20px;
    color: var(--paper);
}

.final-cta p,
.tools-cta p {
    max-width: 56ch;
    margin: 0 auto 34px;
    font-size: 18px;
    color: rgba(250, 245, 236, 0.8);
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1024px) {
    .secao-split .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .split-head { position: static; }

    .split-head h2 { max-width: 22ch; }

    .split-corpo { max-width: none; }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero-content {
        max-width: none;
    }

    .benefits-grid,
    .services-grid-enhanced,
    .services-grid,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps::before {
        display: none;
    }

    .press-grid,
    .mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-head.duas-colunas {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: start;
    }

    .section-head.duas-colunas h2 { max-width: 20ch; }
}

@media (max-width: 768px) {
    :root {
        --header-h: 66px;
    }

    body {
        font-size: 16px;
    }

    .container {
        padding: 0 22px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-photo,
    .nutri-photo,
    .gyn-photo {
        width: min(84%, 340px);
    }

    .hero-image::before,
    .hero-image::after,
    .hero-nutri-image::before,
    .hero-gyn-image::before {
        width: min(84%, 340px);
    }

    .hero-chip--top { left: 0; top: 10%; }
    .hero-chip--bottom { right: 0; bottom: 8%; }

    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-card-featured {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 28px 28px;
    }

    .service-card-featured h3 {
        max-width: none;
    }

    .cta-button {
        width: 100%;
    }

    /* números em três colunas, para não empurrar a foto para longe */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 28px;
    }

    .hero-stats div {
        min-width: 0;
    }

    .hero-stats b {
        font-size: 27px;
    }

    .hero-stats span {
        font-size: 12px;
        letter-spacing: 0.06em;
        line-height: 1.35;
    }

    .faq-answer p {
        padding-right: 0;
    }

    .press-card img {
        height: 260px;
    }
}

@media (max-width: 560px) {
    .press-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .services-grid-enhanced,
    .services-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        border-radius: var(--radius);
    }

    .hero-chip {
        font-size: 12px;
        padding: 9px 14px;
    }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .will-reveal {
        opacity: 1;
        transform: none;
    }
}

/* Card da imprensa que virou link para a materia */
.press-link {
    display: block;
    line-height: 0;
}

.press-link:focus-visible {
    outline: 2px solid var(--apricot-texto);
    outline-offset: 3px;
}
