/* =========================================================
   Projeto Rafinha — style.css
   Paleta acolhedora: sage, creme, pêssego, grafite quente.
   Tom de guia e apoio — sem azul pesado.
   ========================================================= */

:root {
    --ink-900:   #3a4249;
    --ink-800:   #4a5563;
    --ink-700:   #5c6773;
    --ink-600:   #7b8794;
    --ink-rgb:   74, 85, 99;

    --sage-600:  #4d9488;
    --sage-500:  #6db5a8;
    --sage-400:  #94d4c8;
    --sage-100:  #e5f3ef;
    --sage-50:   #f2faf7;

    --peach-500: #e8a598;
    --peach-100: #fceee9;

    --sun-500:   #f5c842;
    --sun-400:   #ffd76b;

    --coral-500: #e8928a;
    --coral-400: #f0aca5;

    --cream-50:  #fffaf2;
    --cream-100: #fff4e1;

    --ring:      0 0 0 6px rgba(109, 181, 168, 0.28);
    --header-h:  3.5rem;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--cream-50);
    overflow-x: hidden;
}

/* ===== Seleção de texto ===== */
::selection {
    background: var(--sage-400);
    color: var(--ink-900);
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream-100); }
::-webkit-scrollbar-thumb {
    background: var(--sage-400);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--sage-500); }


/* =========================================================
   NAVBAR — CSS puro (não depende do Tailwind no mobile)
   ========================================================= */

#site-nav {
    display: block;
    min-height: var(--header-h);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(var(--ink-rgb), 0.1);
    box-shadow: 0 4px 16px -6px rgba(58, 66, 73, 0.15);
    padding-top: env(safe-area-inset-top, 0);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 6px 22px -8px rgba(58, 66, 73, 0.18);
}

.site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 80rem;
    margin: 0 auto;
    padding: 10px 16px;
    min-height: var(--header-h);
    box-sizing: border-box;
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
    text-decoration: none;
    max-width: calc(100% - 3.25rem);
}

.site-header__end {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-mark {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sage-500);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1rem;
    box-shadow: var(--shadow-soft, 0 10px 30px -10px rgba(58, 66, 73, 0.12));
}

.logo-text {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.15;
    color: var(--ink-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-text-accent { color: var(--sage-600); }

.site-header__desktop {
    display: none;
    align-items: center;
    gap: 1.1rem;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.site-header__cta {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--sage-500);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
}

.site-header__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(var(--ink-rgb), 0.15);
    border-radius: 50%;
    background: #fff;
    color: var(--ink-800);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}

.site-header__toggle #menu-icon { font-size: 1.15rem; }

.menu-icon-bars {
    display: none;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    position: relative;
}
.menu-icon-bars::before,
.menu-icon-bars::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}
.menu-icon-bars::before { top: -6px; }
.menu-icon-bars::after { top: 6px; }

/* Se Font Awesome não carregar, mostra barras CSS */
.site-header__toggle #menu-icon:empty,
.site-header__toggle:not(:has(#menu-icon)) .menu-icon-bars {
    display: block;
}

.site-header__backdrop {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    z-index: 9998;
    background: rgba(58, 66, 73, 0.4);
}
.site-header__backdrop.is-closed { display: none; }

.site-header__drawer {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    z-index: 9999;
    max-height: min(75dvh, calc(100dvh - var(--header-h)));
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid rgba(var(--ink-rgb), 0.12);
    box-shadow: 0 12px 32px -8px rgba(58, 66, 73, 0.2);
}
.site-header__drawer.is-closed { display: none; }

.site-header__drawer-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px max(16px, env(safe-area-inset-bottom));
    font-weight: 600;
}

body.nav-menu-open { overflow: hidden; }

@media (min-width: 640px) {
    :root { --header-h: 4rem; }
    .logo-text { font-size: 1.15rem; }
    .site-header__bar { padding: 12px 24px; }
}

@media (min-width: 1024px) {
    .site-header {
        background: rgba(255, 250, 242, 0.95);
        box-shadow: none;
    }
    .site-header.scrolled {
        background: #fff;
        box-shadow: 0 6px 24px -12px rgba(58, 66, 73, 0.12);
    }

    .site-header__brand {
        flex: 0 1 auto;
        max-width: none;
    }

    .site-header__end {
        gap: 1.25rem;
    }

    .site-header__desktop {
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .site-header__cta {
        display: inline-flex;
    }

    .site-header__toggle,
    .site-header__drawer,
    .site-header__backdrop {
        display: none !important;
    }
}

.nav-link { color: var(--ink-700); text-decoration: none; }

.nav-link {
    position: relative;
    transition: color 0.25s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--sage-500);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.nav-link:hover { color: var(--sage-600); }
.nav-link:hover::after { width: 100%; }

.mobile-link {
    display: block;
    color: var(--ink-800);
    padding: 14px 10px;
    border-radius: 10px;
    font-size: 1.1rem;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
.mobile-link:hover,
.mobile-link:active {
    color: var(--sage-600);
    background: var(--sage-50);
}
.mobile-link--cta {
    margin-top: 8px;
    text-align: center;
    background: var(--sage-500);
    color: #fff !important;
}
.mobile-link--cta:hover { background: var(--sage-600); }


/* =========================================================
   HERO
   ========================================================= */
.hero {
    background:
        radial-gradient(900px 500px at 85% 15%, rgba(109, 181, 168, 0.18), transparent 55%),
        radial-gradient(700px 400px at 5% 85%, rgba(232, 165, 152, 0.15), transparent 55%),
        radial-gradient(600px 300px at 50% 0%, rgba(245, 200, 66, 0.1), transparent 50%),
        linear-gradient(180deg, var(--sage-50) 0%, var(--cream-50) 55%, #fff 100%);
    color: var(--ink-800);
}

.hero h1 { letter-spacing: -0.02em; }

.stat-box {
    text-align: center;
    background: #fff;
    border: 1px solid rgba(var(--ink-rgb), 0.08);
    border-radius: 18px;
    padding: 14px 10px;
    box-shadow: 0 8px 24px -12px rgba(58, 66, 73, 0.1);
}

.hero-frame {
    position: relative;
}
.hero-frame--video {
    width: 100%;
    max-width: 300px;
}
@media (min-width: 640px) {
    .hero-frame--video { max-width: 320px; }
}
@media (min-width: 1024px) {
    .hero-frame--video { max-width: 340px; }
}

/* Player YouTube personalizado (hero) */
.yt-player {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--ink-900);
}
.yt-player--vertical {
    aspect-ratio: 9 / 16;
    max-height: min(72vh, 620px);
}
.yt-player__cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    cursor: pointer;
    background: none;
}
.yt-player__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.yt-player__cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(58, 66, 73, 0.05) 40%, rgba(58, 66, 73, 0.45) 100%);
    pointer-events: none;
}
.hero-frame::before {
    content: '';
    position: absolute;
    inset: -16px;
    top: 0;
    background: radial-gradient(closest-side, rgba(109, 181, 168, 0.2), transparent 70%);
    z-index: -1;
    filter: blur(20px);
    pointer-events: none;
}

.yt-player__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--sage-600);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    padding-left: 4px;
    box-shadow: 0 12px 40px rgba(58, 66, 73, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2;
}
.yt-player__cover:hover .yt-player__play,
.yt-player__cover:focus-visible .yt-player__play {
    transform: translate(-50%, -50%) scale(1.06);
    background: #fff;
}
.yt-player__cover:focus-visible {
    outline: 3px solid var(--sage-400);
    outline-offset: 3px;
}
.yt-player__label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ink-800);
}
.yt-player__embed {
    position: absolute;
    inset: 0;
}
.yt-player__embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.yt-player.is-playing .yt-player__cover {
    display: none;
}

.hero-badge {
    margin-top: 1.25rem;
    margin-left: -0.5rem;
    position: relative;
    z-index: 2;
}
@media (min-width: 640px) {
    .hero-badge { margin-left: -1rem; }
}

.home-gallery {
    padding-bottom: 2.5rem;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
    animation: floaty 8s ease-in-out infinite;
}
.bubble-1 { width: 200px; height: 200px; top: 8%; left: -50px; background: var(--sage-400); }
.bubble-2 { width: 180px; height: 180px; bottom: 10%; right: -40px; background: var(--peach-500); animation-delay: -2s; }
.bubble-3 { width: 140px; height: 140px; top: 35%; right: 15%; background: var(--sun-400); animation-delay: -4s; }
.bubble-4 { width: 100px; height: 100px; bottom: 30%; left: 25%; background: var(--sage-500); opacity: 0.25; animation-delay: -6s; }

@keyframes floaty {
    0%, 100% { transform: translateY(0) translateX(0); }
    50%      { transform: translateY(-18px) translateX(8px); }
}


/* =========================================================
   COMPONENTES GENÉRICOS DE SEÇÃO
   ========================================================= */
.section-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--sage-100);
    color: var(--sage-600);
    border: 1px solid rgba(109, 181, 168, 0.35);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.section-title {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    line-height: 1.1;
    margin-top: 14px;
    color: var(--ink-800);
    letter-spacing: -0.01em;
}
.section-subtitle {
    margin-top: 14px;
    color: var(--ink-700);
    font-size: 1.05rem;
    line-height: 1.65;
}


/* =========================================================
   O PROJETO — NORTE
   ========================================================= */
.norte-card {
    background: var(--cream-50);
    border: 1px solid rgba(var(--ink-rgb), 0.06);
    border-radius: 22px;
    padding: 26px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.norte-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -18px rgba(58, 66, 73, 0.15);
}
.norte-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: 14px;
}
.norte-card h3 {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--ink-800);
}
.norte-card p {
    margin-top: 8px;
    color: var(--ink-700);
    font-size: 0.95rem;
    line-height: 1.55;
    flex: 1;
}
.norte-link {
    margin-top: 16px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--sage-600);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s ease, color .2s ease;
}
.norte-link:hover {
    color: var(--sage-500);
    gap: 10px;
}


/* =========================================================
   TIMELINE
   ========================================================= */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom,
        rgba(245,200,66,0) 0%,
        rgba(245,200,66,0.7) 10%,
        rgba(109,181,168,0.7) 50%,
        rgba(255,126,126,0.7) 90%,
        rgba(255,126,126,0) 100%);
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}
.timeline-step .timeline-card { grid-column: 2; }
.timeline-step.reverse .timeline-card { grid-column: 1; text-align: right; }

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--sun-500);
    color: var(--ink-800);
    display: grid;
    place-items: center;
    transform: translateX(-50%);
    font-size: 1.2rem;
    box-shadow: 0 8px 24px -10px rgba(58,66,73,0.15), 0 0 0 6px var(--cream-50);
    z-index: 2;
}
.timeline-dot { color: #fff; }
.timeline-dot.bg-sun-500 { color: var(--ink-800); }

.timeline-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px 26px;
    box-shadow: 0 16px 40px -22px rgba(58,66,73,0.12);
    border: 1px solid rgba(var(--ink-rgb), 0.06);
    transition: transform .3s ease, box-shadow .3s ease;
}
.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -22px rgba(58,66,73,0.14);
}
.timeline-date {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--sage-600);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.timeline-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(245,200,66,0.18);
    color: var(--sun-500);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.timeline-title {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    margin: 10px 0 8px;
    color: var(--ink-800);
}
.timeline-card p { color: var(--ink-700); line-height: 1.6; }

.timeline-body a:not(.timeline-vakinha-cta a) {
    color: var(--sage-600);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.timeline-body a:not(.timeline-vakinha-cta a):hover {
    color: var(--sage-500);
}

.timeline-vakinha-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 1.15rem;
    padding-top: 1.15rem;
    border-top: 1px dashed rgba(var(--ink-rgb), 0.14);
}
.timeline-step.reverse .timeline-vakinha-cta {
    align-items: flex-end;
}
.timeline-vakinha-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sage-500) 0%, var(--sage-600) 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    text-decoration: none !important;
    text-align: center;
    box-shadow: 0 10px 28px -12px rgba(77, 148, 136, 0.65);
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}
.timeline-vakinha-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(77, 148, 136, 0.75);
    background: linear-gradient(135deg, var(--sage-600) 0%, #3d7f74 100%);
    color: #fff !important;
}
.timeline-vakinha-cta a:focus-visible {
    outline: 3px solid var(--sun-400);
    outline-offset: 3px;
}
.timeline-vakinha-cta a i {
    font-size: 1.1rem;
}
.timeline-vakinha-cta__hint {
    margin: 0;
    font-size: 0.78rem;
    color: var(--ink-600);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .timeline-line { left: 28px; }
    .timeline-step,
    .timeline-step.reverse {
        grid-template-columns: 1fr;
        padding-left: 70px;
    }
    .timeline-step .timeline-card,
    .timeline-step.reverse .timeline-card {
        grid-column: 1;
        text-align: left;
    }
    .timeline-step.reverse .timeline-vakinha-cta {
        align-items: flex-start;
    }
    .timeline-vakinha-cta a {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
    .timeline-dot { left: 28px; top: 24px; }
}


/* =========================================================
   HEMIMEGALENCEFALIA
   ========================================================= */
.hemi-illustration {
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(109,181,168,0.2), transparent 70%);
}
.hemi-pulse {
    position: absolute;
    inset: 8%;
    border: 2px dashed rgba(109,181,168,0.45);
    border-radius: 50%;
    animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.info-card {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 1px solid rgba(var(--ink-rgb), 0.08);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 8px 24px -14px rgba(58, 66, 73, 0.1);
    transition: all .3s ease;
}
.info-card:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 28px -12px rgba(58, 66, 73, 0.14);
}
.info-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--sage-100);
    color: var(--sage-600);
    display: grid; place-items: center;
    font-size: 1.2rem;
}
.info-title {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 600;
    color: var(--ink-800);
    margin-bottom: 4px;
}
.info-text {
    font-size: 0.95rem;
    color: var(--ink-700);
    line-height: 1.55;
}


/* =========================================================
   ROTINA / DIA A DIA
   ========================================================= */
.routine-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px -22px rgba(58,66,73,0.1);
    border: 1px solid rgba(var(--ink-rgb), 0.06);
    transition: all .35s ease;
}
.routine-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px -22px rgba(13,27,61,0.35);
}
.routine-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--sage-100);
    position: relative;
}
.routine-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(58,66,73,0.25) 0%, transparent 60%);
}
.routine-body { padding: 18px 20px 22px; }
.routine-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,200,66,0.18);
    color: var(--sun-500);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.routine-body h3 {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 10px 0 6px;
    color: var(--ink-800);
}
.routine-body p {
    color: var(--ink-700);
    font-size: 0.95rem;
}


/* =========================================================
   ACOLHIMENTO
   ========================================================= */
.support-card {
    background: #fff;
    border-radius: 22px;
    padding: 26px 24px;
    text-align: center;
    box-shadow: 0 18px 40px -22px rgba(13,27,61,0.18);
    border: 1px solid rgba(13,27,61,0.04);
    transition: all .3s ease;
}
.support-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px -22px rgba(13,27,61,0.3);
}
.support-icon {
    width: 64px; height: 64px;
    border-radius: 20px;
    display: grid; place-items: center;
    font-size: 1.5rem;
    margin: 0 auto 14px;
}
.support-card h3 {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--ink-800);
}
.support-card p {
    margin-top: 8px;
    color: var(--ink-700);
    font-size: 0.95rem;
    line-height: 1.55;
}


/* =========================================================
   DOAÇÕES
   ========================================================= */
.donate-card {
    background: #fff;
    border: 1px solid rgba(var(--ink-rgb), 0.08);
    border-radius: 24px;
    padding: 28px 26px;
    text-align: center;
    box-shadow: 0 12px 32px -16px rgba(58, 66, 73, 0.12);
    transition: all .3s ease;
}
.donate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -16px rgba(58, 66, 73, 0.16);
}
.donate-card.highlight {
    background: linear-gradient(180deg, #fff 0%, var(--cream-100) 100%);
    border-color: rgba(245, 200, 66, 0.5);
    box-shadow: 0 16px 40px -14px rgba(245, 200, 66, 0.25);
}
.donate-icon {
    width: 72px; height: 72px;
    margin: 0 auto 16px;
    border-radius: 22px;
    background: var(--sage-100);
    color: var(--sage-600);
    display: grid; place-items: center;
    font-size: 1.6rem;
}
.donate-card h3 {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--ink-800);
}
.donate-card > p { margin: 10px 0 18px; }
.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    background: var(--sun-500);
    color: var(--ink-800);
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 999px;
    transition: all .25s ease;
}
.donate-btn:hover {
    background: var(--sun-400);
    transform: scale(1.04);
}
.pix-key {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--sage-50);
    border: 1px dashed rgba(109, 181, 168, 0.5);
    border-radius: 14px;
    padding: 10px 12px;
    margin-top: 4px;
    word-break: break-all;
    font-family: ui-monospace, monospace;
    font-size: 0.9rem;
    color: var(--sage-600);
}
.copy-btn {
    margin-left: auto;
    background: var(--sage-500);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.copy-btn:hover { background: var(--sage-600); transform: scale(1.05); }

.share-buttons { display: flex; justify-content: center; gap: 10px; margin-top: 4px; }
.share-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--sage-100);
    color: var(--sage-600);
    display: grid; place-items: center;
    transition: all .25s ease;
}
.share-btn:hover {
    background: var(--sage-500);
    color: #fff;
    transform: translateY(-3px);
}

.impact-card {
    background: #fff;
    border: 1px solid rgba(var(--ink-rgb), 0.08);
    border-radius: 18px;
    padding: 22px 16px;
    text-align: center;
    transition: all .25s ease;
}
.impact-card:hover {
    background: var(--sage-50);
    border-color: rgba(109, 181, 168, 0.35);
    transform: translateY(-4px);
}
.impact-icon {
    width: 56px; height: 56px;
    background: var(--sage-500);
    color: #fff;
    border-radius: 18px;
    display: grid; place-items: center;
    font-size: 1.4rem;
    margin: 0 auto 12px;
}
.impact-card p { font-weight: 700; color: var(--ink-800); }


/* =========================================================
   LOJINHA
   ========================================================= */
.product-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px -22px rgba(13,27,61,0.18);
    border: 1px solid rgba(13,27,61,0.05);
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px -22px rgba(13,27,61,0.3);
}
.product-img {
    height: 180px;
    background: rgba(74,144,194,0.12);
    display: grid;
    place-items: center;
    font-size: 4rem;
    color: var(--sage-600);
    position: relative;
}
.product-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--sun-500);
    color: var(--ink-800);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
/* Variantes coloridas (sobrescrevem com cor de texto branca) */
.product-badge.bg-coral-500,
.product-badge.bg-sky-500 { color: #fff; }

.product-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--ink-800);
}
.product-body p {
    margin-top: 6px;
    color: rgba(13,27,61,0.7);
    font-size: 0.9rem;
    flex: 1;
}
.product-price {
    display: block;
    margin-top: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--sage-600);
}
.product-btn {
    margin-top: 14px;
    background: #25D366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all .25s ease;
}
.product-btn:hover { background: #1ebf5b; transform: scale(1.03); }


/* =========================================================
   GALERIA — SWIPER
   ========================================================= */
.galleryswiper {
    width: 100%;
    padding: 20px 6px 60px;
}
.gallery-slide {
    width: 320px;
    height: 420px;
    border-radius: 22px;
    background-size: cover;
    background-position: center;
    background-color: rgba(13,27,61,0.1);
    box-shadow: 0 18px 40px -22px rgba(13,27,61,0.4);
    position: relative;
    overflow: hidden;
    transition: transform .35s ease;
}
.gallery-slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,61,0.45) 0%, transparent 50%);
    transition: opacity .3s ease;
}
.swiper-slide-active.gallery-slide { transform: scale(1.04); }
.galleryswiper .swiper-pagination-bullet { background: var(--ink-600); opacity: 0.35; }
.galleryswiper .swiper-pagination-bullet-active { background: var(--sage-500); opacity: 1; }
.galleryswiper .swiper-button-prev,
.galleryswiper .swiper-button-next {
    color: var(--ink-800);
    background: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    box-shadow: 0 10px 24px -10px rgba(13,27,61,0.3);
}
.galleryswiper .swiper-button-prev::after,
.galleryswiper .swiper-button-next::after {
    font-size: 1.1rem;
    font-weight: 800;
}

@media (max-width: 640px) {
    .gallery-slide { width: 260px; height: 360px; }
}


/* =========================================================
   CONTATO
   ========================================================= */
.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.contact-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    display: grid; place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-link {
    font-weight: 700;
    color: var(--ink-800);
    font-size: 1.05rem;
}
a.contact-link:hover { color: var(--sage-600); }

.contact-form {
    background: #fff;
    padding: 32px 28px;
    border-radius: 24px;
    box-shadow: 0 18px 40px -22px rgba(58,66,73,0.1);
    border: 1px solid rgba(var(--ink-rgb), 0.06);
}
.form-field { display: flex; flex-direction: column; }
.form-field label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-600);
    margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
    background: var(--cream-50);
    border: 1px solid rgba(13,27,61,0.12);
    border-radius: 14px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink-800);
    transition: all .25s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--sun-500);
    background: #fff;
    box-shadow: var(--ring);
}
.form-field textarea { resize: vertical; min-height: 120px; }


/* =========================================================
   FOOTER
   ========================================================= */
.footer-title {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 14px;
    color: #fff;
}
.footer-list { display: flex; flex-direction: column; gap: 8px; font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.footer-list a { transition: color .2s ease; }
.footer-list a:hover { color: var(--sun-500); }

.social-link {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: grid; place-items: center;
    transition: all .25s ease;
}
.social-link:hover {
    background: var(--sun-500);
    color: var(--ink-800);
    transform: translateY(-3px);
}


/* =========================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================= */
#float-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    box-shadow: 0 12px 30px -8px rgba(37,211,102,0.55);
    z-index: 90;
    transition: transform .25s ease, box-shadow .25s ease;
    animation: pulse-whats 2.4s ease-in-out infinite;
}
#float-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 18px 36px -8px rgba(37,211,102,0.75);
}
.float-tooltip {
    position: absolute;
    right: 72px;
    background: var(--ink-800);
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: all .25s ease;
}
#float-whatsapp:hover .float-tooltip { opacity: 1; transform: translateX(0); }

@keyframes pulse-whats {
    0%, 100% { box-shadow: 0 12px 30px -8px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.5); }
    50%      { box-shadow: 0 12px 30px -8px rgba(37,211,102,0.7),  0 0 0 14px rgba(37,211,102,0); }
}


/* =========================================================
   TOAST
   ========================================================= */
.toast {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%) translateY(20px);
    background: var(--ink-800);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    box-shadow: 0 18px 40px -10px rgba(13,27,61,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    opacity: 0;
    pointer-events: none;
    transition: all .35s ease;
    z-index: 200;
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.toast .fa-circle-check { color: var(--sun-500); }


/* =========================================================
   REVISTA — LAYOUT EDITORIAL
   ========================================================= */
.mag-site { background-color: var(--cream-50); }

/* Marca no menu */
.mag-brand { display: flex; flex-direction: column; line-height: 1.1; }
.mag-brand-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink-800);
    letter-spacing: -0.02em;
}
.mag-brand-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--sage-600);
    font-weight: 700;
}

/* Capa */
.mag-cover {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(109,181,168,0.12), transparent),
        linear-gradient(180deg, #fff 0%, var(--cream-50) 100%);
    border-bottom: 3px double rgba(var(--ink-rgb), 0.15);
}
.mag-cover-top { text-align: center; padding-bottom: 8px; border-bottom: 1px solid rgba(var(--ink-rgb), 0.1); }
.mag-edition {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-600);
    font-weight: 700;
}
.mag-masthead {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 0.95;
    color: var(--ink-800);
    margin-top: 8px;
    letter-spacing: -0.03em;
}
.mag-tagline {
    margin-top: 10px;
    font-size: 1.05rem;
    color: var(--ink-700);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}
.mag-tagline em { font-style: italic; color: var(--sage-600); font-weight: 600; }

.mag-cover-kicker {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--coral-500);
    border-bottom: 2px solid var(--coral-500);
    padding-bottom: 4px;
}
.mag-cover-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--ink-800);
    margin-top: 14px;
}
.mag-cover-deck {
    margin-top: 16px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ink-700);
    max-width: 34rem;
}
.mag-cover-highlights {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    list-style: none;
    padding: 0;
    font-size: 0.88rem;
    color: var(--ink-700);
}
.mag-cover-highlights strong { color: var(--sage-600); }

.mag-cover-photo {
    position: relative;
    margin: 0;
    border: 1px solid rgba(var(--ink-rgb), 0.12);
    box-shadow: 12px 12px 0 var(--sage-100);
    background: #fff;
}
.mag-cover-photo img {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.mag-cover-caption {
    padding: 12px 14px;
    font-size: 0.82rem;
    color: var(--ink-700);
    border-top: 1px solid rgba(var(--ink-rgb), 0.08);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mag-caption-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: var(--sage-600);
}

.mag-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 22px;
    border-radius: 4px;
    transition: all .25s ease;
}
.mag-btn-primary {
    background: var(--ink-800);
    color: #fff;
}
.mag-btn-primary:hover { background: var(--sage-600); }
.mag-btn-outline {
    background: transparent;
    border: 2px solid var(--ink-800);
    color: var(--ink-800);
}
.mag-btn-outline:hover { background: var(--sage-50); border-color: var(--sage-600); color: var(--sage-600); }

/* Cabeçalhos de seção / artigo */
.mag-section-head { text-align: center; max-width: 40rem; margin: 0 auto; }
.mag-kicker {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--sage-600);
}
.mag-section-title,
.mag-article-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.9rem, 4vw, 2.85rem);
    line-height: 1.1;
    color: var(--ink-800);
    margin-top: 10px;
}
.mag-section-deck,
.mag-article-lead {
    margin-top: 14px;
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--ink-700);
}
.mag-byline {
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--ink-600);
    font-style: italic;
}
.mag-article-head { margin-bottom: 8px; }

/* Sumário */
.mag-toc { display: flex; flex-direction: column; gap: 0; border-top: 2px solid var(--ink-800); }
.mag-toc-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px 20px;
    align-items: center;
    padding: 20px 8px;
    border-bottom: 1px solid rgba(var(--ink-rgb), 0.12);
    text-decoration: none;
    color: inherit;
    transition: background .2s ease, padding-left .2s ease;
}
.mag-toc-item:hover {
    background: var(--sage-50);
    padding-left: 16px;
}
.mag-toc-item:hover .mag-toc-arrow { transform: translateX(4px); color: var(--sage-600); }
.mag-toc-feature { background: var(--cream-100); }
.mag-toc-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--sage-500);
    line-height: 1;
    min-width: 2.5rem;
}
.mag-toc-type {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    color: var(--ink-600);
}
.mag-toc-item h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink-800);
    margin-top: 4px;
}
.mag-toc-item p { font-size: 0.9rem; color: var(--ink-600); margin-top: 4px; }
.mag-toc-arrow { color: var(--ink-600); transition: transform .2s ease; }

/* Citação editorial */
.mag-pullquote {
    margin-top: 48px;
    padding: 28px 24px;
    border-left: 4px solid var(--sage-500);
    background: var(--sage-50);
    text-align: left;
}
.mag-pullquote p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    line-height: 1.45;
    color: var(--ink-800);
}
.mag-pullquote cite {
    display: block;
    margin-top: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-600);
    font-style: normal;
    font-weight: 700;
}

/* Papel de revista (textura sutil) */
.mag-paper {
    background-image:
        linear-gradient(rgba(var(--ink-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--ink-rgb), 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Especial — páginas duplas */
.mag-spread {
    background: #fff;
    border: 1px solid rgba(var(--ink-rgb), 0.1);
    box-shadow: 8px 8px 0 rgba(var(--ink-rgb), 0.04);
    overflow: hidden;
}
.mag-spread-header {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(var(--ink-rgb), 0.08);
}
.mag-spread-ped { background: linear-gradient(90deg, var(--peach-100), #fff); }
.mag-spread-neuro { background: linear-gradient(90deg, var(--sage-100), #fff); }
.mag-spread-icon {
    width: 48px; height: 48px;
    border-radius: 8px;
    background: #fff;
    display: grid; place-items: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.mag-spread-ped .mag-spread-icon { color: var(--peach-500); }
.mag-spread-neuro .mag-spread-icon { color: var(--sage-600); }
.mag-spread-header h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink-800);
    flex: 1;
}
.mag-spread-sub {
    width: 100%;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-600);
    font-weight: 700;
    margin-left: 62px;
    margin-top: -8px;
}
.mag-spread-body { padding: 22px 24px 28px; }
.mag-spread-body h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink-800);
    margin-top: 18px;
    margin-bottom: 6px;
}
.mag-spread-body h4:first-child { margin-top: 0; }
.mag-spread-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-700);
}

.mag-sidebar {
    background: #fff;
    border: 2px dashed var(--sun-500);
    padding: 22px 24px;
    border-radius: 4px;
}
.mag-sidebar h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--ink-800);
    display: flex;
    align-items: center;
    gap: 8px;
}
.mag-sidebar ul {
    margin-top: 12px;
    padding-left: 1.2rem;
    color: var(--ink-700);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .mag-toc-item { grid-template-columns: auto 1fr; }
    .mag-toc-arrow { display: none; }
    .mag-spread-sub { margin-left: 0; }
}


/* =========================================================
   BLOG / GUIA — cards e cabeçalhos de matéria
   ========================================================= */
.content-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    background: var(--cream-50);
    border: 1px solid rgba(var(--ink-rgb), 0.08);
    border-radius: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.content-card:hover {
    border-color: rgba(109, 181, 168, 0.45);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}
.content-card-feature {
    background: linear-gradient(135deg, var(--sage-50), #fff);
    border-color: rgba(109, 181, 168, 0.25);
}
.content-card h3 {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink-800);
    line-height: 1.25;
}
.content-card p {
    font-size: 0.92rem;
    color: var(--ink-600);
    line-height: 1.55;
    flex: 1;
}
.content-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.content-tag-story { background: var(--peach-100); color: var(--peach-500); }
.content-tag-guide { background: var(--sage-100); color: var(--sage-600); }
.content-tag-tips  { background: rgba(244, 196, 48, 0.2); color: #9a7b0a; }
.content-tag-blog  { background: var(--cream-100); color: var(--ink-700); border: 1px solid rgba(var(--ink-rgb), 0.1); }
.content-tag-help  { background: rgba(232, 115, 92, 0.15); color: var(--coral-500); }
.content-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sage-600);
    margin-top: 4px;
}
.content-card:hover .content-link i { transform: translateX(3px); }
.content-link i { transition: transform .2s ease; }

.post-head { margin-bottom: 8px; }
.post-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--sage-100);
    color: var(--sage-600);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.post-title {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.12;
    margin-top: 12px;
    color: var(--ink-800);
    letter-spacing: -0.01em;
}
.post-meta {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--ink-600);
}
.post-intro {
    margin-top: 14px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ink-700);
}
.post-quote {
    text-align: center;
    padding: 28px 24px;
    border-left: none;
    border-top: 3px solid var(--sage-400);
    background: var(--sage-50);
    border-radius: 1rem;
}
.post-quote p {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 600;
    font-style: normal;
    color: var(--ink-800);
    line-height: 1.4;
}
.post-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--ink-600);
}

/* Páginas internas */
.page-main {
    padding-top: 6.5rem;
    min-height: 60vh;
}
.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--sage-600);
    margin-bottom: 1.25rem;
    text-decoration: none;
}
.page-breadcrumb:hover { color: var(--sage-600); text-decoration: underline; }
.nav-link.nav-active,
.mobile-link.nav-active {
    color: var(--sage-600);
}

/* Guia — cards blog (sem visual de revista) */
.guide-card {
    background: #fff;
    border: 1px solid rgba(var(--ink-rgb), 0.08);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    height: 100%;
}
.guide-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(var(--ink-rgb), 0.06);
}
.guide-card--ped .guide-card__head { background: var(--peach-100); }
.guide-card--neuro .guide-card__head { background: var(--sage-50); }
.guide-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.guide-card--ped .guide-card__icon { color: var(--peach-500); }
.guide-card--neuro .guide-card__icon { color: var(--sage-600); }
.guide-card__head h3 {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--ink-800);
    line-height: 1.2;
}
.guide-card__sub {
    font-size: 0.85rem;
    color: var(--ink-600);
    margin-top: 2px;
}
.guide-card__body {
    padding: 22px 24px 28px;
}
.guide-card__body h4 {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink-800);
    margin: 18px 0 8px;
}
.guide-card__body h4:first-child { margin-top: 0; }
.guide-card__body p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink-700);
}

.tip-box {
    background: #fff;
    border: 1px solid rgba(109, 181, 168, 0.25);
    border-radius: 1rem;
    padding: 22px 24px;
    box-shadow: var(--shadow-soft);
}
.tip-box h4 {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink-800);
    display: flex;
    align-items: center;
    gap: 8px;
}
.tip-box ul {
    margin-top: 12px;
    padding-left: 1.2rem;
    color: var(--ink-700);
    line-height: 1.7;
    font-size: 0.95rem;
}

.page-cta {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--sage-50);
    border-radius: 1rem;
    text-align: center;
}
.page-cta p { color: var(--ink-700); margin-bottom: 1rem; }
.page-cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.page-cta-links a {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--sage-600);
    text-decoration: none;
    padding: 8px 14px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid rgba(109, 181, 168, 0.35);
}
.page-cta-links a:hover { background: var(--sage-100); }

/* —— Menu Guia (dropdown no hover, sem clique) —— */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: transparent;
    font: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink-700);
    cursor: default;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
.nav-dropdown__trigger::after { display: none; }
.nav-dropdown__trigger:hover,
.nav-dropdown.is-open .nav-dropdown__trigger { color: var(--sage-600); }
.nav-dropdown__caret { font-size: 0.65rem; opacity: 0.75; transition: transform 0.2s ease; }
.nav-dropdown:hover .nav-dropdown__caret,
.nav-dropdown.is-open .nav-dropdown__caret { transform: rotate(180deg); }
.nav-dropdown__panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    padding-top: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 60;
}
.nav-dropdown__menu {
    background: #fff;
    border: 1px solid rgba(109, 181, 168, 0.25);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    padding: 8px;
}
.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown.is-open .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.nav-dropdown__item {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-700);
    text-decoration: none;
}
.nav-dropdown__item:hover { background: var(--sage-50); color: var(--sage-600); }
.mobile-link--parent {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border: none;
    background: transparent;
    font: inherit;
    font-weight: 600;
    text-align: left;
    color: inherit;
    cursor: pointer;
    padding: 12px 0;
}
.mobile-submenu {
    padding-left: 12px;
    border-left: 2px solid var(--sage-200);
    margin: 0 0 8px 8px;
}
.mobile-submenu.is-closed { display: none; }
.mobile-link--sub { font-size: 0.92rem; font-weight: 500; opacity: 0.92; }

/* —— Submenu interno do Guia —— */
.guia-section-nav {
    margin: 1.25rem auto 1.75rem;
    max-width: 56rem;
}
.guia-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.post-head--guia {
    margin-top: 0;
}
.post-head--guia .post-title {
    margin-top: 0;
}
.guia-subnav a {
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--ink-700);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(109, 181, 168, 0.35);
    background: #fff;
}
.guia-subnav a:hover,
.guia-subnav a.is-active {
    background: var(--sage-500);
    color: #fff;
    border-color: var(--sage-500);
}
.guia-subnav__home.is-active { background: var(--sage-600); }

.guia-hub__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.1rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(109, 181, 168, 0.25);
    border-radius: 1rem;
    text-decoration: none;
    color: var(--ink-800);
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    transition: transform 0.15s, border-color 0.15s;
}
.guia-hub__card i { color: var(--sage-500); font-size: 1.25rem; }
.guia-hub__card:hover {
    transform: translateY(-2px);
    border-color: var(--sage-400);
}

/* —— Profissionais —— */
.pro-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.pro-filter {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(109, 181, 168, 0.4);
    background: #fff;
    color: var(--ink-700);
    cursor: pointer;
}
.pro-filter.is-active,
.pro-filter:hover {
    background: var(--sage-500);
    color: #fff;
    border-color: var(--sage-500);
}
.pro-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.pro-card {
    background: #fff;
    border: 1px solid rgba(109, 181, 168, 0.2);
    border-radius: 1rem;
    overflow: visible;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}
.pro-card__photo {
    aspect-ratio: 1;
    background: var(--sage-50);
    overflow: hidden;
}
.pro-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.pro-card__photo--placeholder {
    display: grid;
    place-items: center;
    font-size: 3rem;
    color: var(--sage-400);
}
.pro-card__body { padding: 1.1rem 1.2rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.pro-card__category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sage-600);
}
.pro-card__name {
    font-family: 'Fredoka', system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink-900);
    margin: 0;
}
.pro-card__payment {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--sage-50);
    color: var(--sage-600);
    width: fit-content;
}
.pro-card__price { font-size: 0.9rem; font-weight: 700; color: var(--ink-700); margin: 0; }
.pro-card__price i { color: var(--sage-500); margin-right: 4px; }
.pro-card__desc { font-size: 0.9rem; line-height: 1.55; color: var(--ink-700); }

/* Tooltips — aviso do guia */
.pro-tooltip {
    position: relative;
    display: inline-block;
    max-width: 100%;
}
.pro-tooltip__trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    font: inherit;
    text-align: left;
    color: inherit;
    cursor: help;
    line-height: 1.3;
}
.pro-tooltip__icon {
    font-size: 0.72rem;
    color: var(--sage-500);
    opacity: 0.85;
    transition: color 0.15s ease, transform 0.15s ease;
}
.pro-tooltip__trigger:hover .pro-tooltip__icon,
.pro-tooltip__trigger:focus-visible .pro-tooltip__icon,
.pro-tooltip.is-open .pro-tooltip__icon {
    color: var(--sage-600);
    transform: scale(1.08);
}
.pro-tooltip__bubble {
    position: absolute;
    z-index: 30;
    left: 50%;
    bottom: calc(100% + 10px);
    width: max-content;
    max-width: min(260px, 88vw);
    padding: 0.7rem 0.85rem;
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--ink-700);
    text-align: left;
    background: linear-gradient(155deg, #fff 0%, var(--cream-50) 55%, var(--sage-50) 100%);
    border: 1px solid rgba(109, 181, 168, 0.4);
    border-radius: 14px;
    box-shadow:
        0 16px 40px -12px rgba(77, 148, 136, 0.45),
        0 6px 16px -6px rgba(58, 66, 73, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px) scale(0.94);
    transition:
        opacity 0.22s ease,
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.22s;
}
.pro-tooltip__bubble::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border: 8px solid transparent;
    border-top-color: rgba(109, 181, 168, 0.35);
}
.pro-tooltip__bubble::after {
    content: '';
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    margin-left: -7px;
    border: 7px solid transparent;
    border-top-color: #fff;
}
.pro-tooltip__bubble--wide { max-width: min(320px, 92vw); }
.pro-tooltip__text { margin: 0; }
.pro-tooltip:hover .pro-tooltip__bubble,
.pro-tooltip:focus-within .pro-tooltip__bubble,
.pro-tooltip.is-open .pro-tooltip__bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}
.pro-tooltip--directory {
    margin: 0 0 1rem;
}
.pro-tooltip--directory .pro-tooltip__trigger {
    padding: 7px 12px;
    border: 1px solid rgba(109, 181, 168, 0.35);
    border-radius: 999px;
    background: linear-gradient(135deg, #fff 0%, var(--cream-50) 100%);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sage-600);
    box-shadow: 0 4px 14px -8px rgba(77, 148, 136, 0.35);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pro-tooltip--directory .pro-tooltip__trigger:hover,
.pro-tooltip--directory .pro-tooltip__trigger:focus-visible {
    box-shadow: 0 8px 20px -6px rgba(77, 148, 136, 0.4);
    transform: translateY(-1px);
}
.pro-tooltip--directory .pro-tooltip__bubble {
    left: 0;
    transform: translateY(8px) scale(0.94);
}
.pro-tooltip--directory .pro-tooltip__bubble::before,
.pro-tooltip--directory .pro-tooltip__bubble::after {
    left: 1.5rem;
    margin-left: 0;
}
.pro-tooltip--directory:hover .pro-tooltip__bubble,
.pro-tooltip--directory:focus-within .pro-tooltip__bubble,
.pro-tooltip--directory.is-open .pro-tooltip__bubble {
    transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
    .pro-tooltip__bubble {
        transition: opacity 0.12s ease, visibility 0.12s;
        transform: translateX(-50%);
    }
    .pro-tooltip--directory .pro-tooltip__bubble {
        transform: none;
    }
}
.pro-empty { text-align: center; color: var(--ink-600); padding: 2rem; }

/* Barras de avaliação nos cards */
.pro-ratings {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(109, 181, 168, 0.15);
}
.pro-ratings__detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(109, 181, 168, 0.4);
    background: #fff;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--sage-600);
    cursor: pointer;
}
.pro-ratings__detail-btn:hover { background: var(--sage-50); }
.pro-ratings__detail-btn--ghost {
    margin-top: 0.5rem;
    background: transparent;
}
.pro-ratings-c-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 3px 8px;
    align-items: center;
    margin-bottom: 0.5rem;
}
.pro-ratings-c-row__label {
    grid-column: 1 / -1;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-700);
    line-height: 1.25;
}
.pro-ratings-c-row__track {
    height: 8px;
    border-radius: 999px;
    background: rgba(109, 181, 168, 0.18);
    overflow: hidden;
}
.pro-ratings-c-row__fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--sage-400) 0%, var(--sage-600) 100%);
}
.pro-ratings-c-row__value {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-600);
    font-variant-numeric: tabular-nums;
}

/* Modal de detalhes das notas */
.pro-ratings-detail__row {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(109, 181, 168, 0.15);
}
.pro-ratings-detail__row:last-of-type { border-bottom: none; }
.pro-ratings-detail__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}
.pro-ratings-detail__label {
    font-size: 0.9rem;
    color: var(--ink-800);
}
.pro-ratings-detail__score {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.pro-ratings-detail__stars {
    color: var(--sun-500);
    letter-spacing: 1px;
    font-size: 0.78rem;
}
.pro-ratings-detail__value {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--ink-700);
}
.pro-ratings-detail__hint {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--ink-600);
}
.pro-ratings-detail__disclaimer {
    margin: 1rem 0 0;
    padding: 0.65rem 0.75rem;
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--ink-600);
    background: var(--cream-50);
    border-radius: 10px;
    border: 1px solid rgba(109, 181, 168, 0.2);
}
.pro-ratings-detail-modal .pro-review-modal__panel { max-width: 520px; }

.pro-directory__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.pro-search {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}
.pro-search__field { display: flex; flex-direction: column; gap: 4px; font-size: 0.82rem; font-weight: 600; color: var(--ink-700); }
.pro-search__input {
    min-width: 120px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(109, 181, 168, 0.35);
    background: #fff;
    font: inherit;
}
.pro-search__btn {
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    background: var(--sage-600);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
.pro-signup-invite {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    margin: 0 0 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: var(--cream-50);
    border: 1px solid rgba(109, 181, 168, 0.35);
    box-shadow: 0 10px 32px -14px rgba(77, 148, 136, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pro-signup-invite:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px -12px rgba(77, 148, 136, 0.42);
}
.pro-signup-invite__visual {
    min-height: 180px;
    background: linear-gradient(135deg, var(--sage-50) 0%, var(--peach-100) 100%);
}
.pro-signup-invite__visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    object-position: center 20%;
}
.pro-signup-invite__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.55rem;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--cream-50) 100%);
}
.pro-signup-invite__badge {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--sage-600);
    padding: 4px 10px;
    border-radius: 999px;
}
.pro-signup-invite__title {
    margin: 0;
    font-family: Fredoka, sans-serif;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    line-height: 1.2;
    color: var(--ink-800);
}
.pro-signup-invite__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--ink-600);
}
.pro-signup-invite__cta {
    margin-top: 0.35rem;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--sage-600);
}
.pro-signup-invite--hero {
    cursor: default;
}
.pro-signup-invite--hero:hover {
    transform: none;
    box-shadow: 0 10px 32px -14px rgba(77, 148, 136, 0.35);
}
.pro-signup-invite--hero + .pro-register-panel {
    margin-top: 0;
}
@media (max-width: 720px) {
    .pro-signup-invite {
        grid-template-columns: 1fr;
    }
    .pro-signup-invite__visual {
        max-height: 200px;
    }
    .pro-signup-invite__visual img {
        min-height: 0;
        max-height: 200px;
    }
}
.pro-directory__status { font-size: 0.9rem; color: var(--ink-600); margin: 0 0 1rem; }
.pro-directory__status--error { color: #b45309; }
.pro-card__location { font-size: 0.88rem; color: var(--ink-600); margin: 0.35rem 0; }
.pro-card__contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--sage-600);
    text-decoration: none;
    margin: 0.15rem 0 0.35rem;
}
.pro-card__contact--whatsapp { color: #25D366; }
.pro-card__contact:hover { text-decoration: underline; }
.pro-card__map {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sage-600);
    text-decoration: none;
    margin: 0.25rem 0 0.5rem;
}
.pro-card__map:hover { text-decoration: underline; }
.pro-card__review-btn {
    margin-top: 10px;
    width: 100%;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(109, 181, 168, 0.4);
    background: var(--sage-50);
    color: var(--sage-600);
    font-weight: 700;
    cursor: pointer;
}
.pro-review-modal { position: fixed; inset: 0; z-index: 10000; display: none; }
.pro-review-modal.is-open { display: block; }
.pro-review-modal__backdrop { position: absolute; inset: 0; background: rgba(58, 66, 73, 0.45); }
.pro-review-modal__panel {
    position: relative;
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;
    margin: 6vh auto;
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1.5rem;
    box-shadow: var(--shadow-soft);
}
.pro-review-modal__close {
    position: absolute;
    top: 8px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--ink-600);
}
.pro-review__form label { display: block; margin-bottom: 10px; font-weight: 600; font-size: 0.88rem; }
.pro-review__form input,
.pro-review__form select,
.pro-review__form textarea {
    width: 100%;
    margin-top: 4px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(109, 181, 168, 0.35);
    font: inherit;
}
.pro-review__intro { font-size: 0.88rem; font-weight: 600; color: var(--ink-700); margin: 0 0 8px; }
.pro-review__rating { margin-bottom: 12px; }
.pro-review__rating-label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 2px; }
.pro-review__rating-hint { font-size: 0.78rem; color: var(--ink-500); line-height: 1.35; margin: 0 0 6px; }
.pro-review__disclaimer { font-size: 0.78rem; color: var(--ink-500); line-height: 1.4; margin: 0.5rem 0; }
.pro-review__hint { font-size: 0.82rem; color: var(--ink-600); margin: 0 0 10px; }
.pro-review__feedback { font-size: 0.88rem; margin-top: 8px; color: var(--sage-600); }
.pro-review__feedback--error { color: #b45309; }
body.pro-review-open { overflow: hidden; }

.pro-portal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid rgba(var(--ink-rgb), 0.1);
}
.pro-portal__brand { font-weight: 700; text-decoration: none; color: var(--ink-800); }
.pro-portal__brand span { color: var(--sage-600); }
.pro-portal__nav { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-size: 0.88rem; font-weight: 600; }
.pro-portal__nav a { color: var(--ink-700); text-decoration: none; }
.pro-portal__nav-cta { color: var(--sage-600) !important; }
.pro-portal__user { color: var(--ink-600); font-weight: 500; }
.pro-portal__main { max-width: 720px; margin: 0 auto; padding: 2rem 16px 3rem; }
.pro-portal__card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(109, 181, 168, 0.25);
    box-shadow: var(--shadow-soft);
}
.pro-portal__card--wide { max-width: 640px; margin: 0 auto; }
.pro-portal__card h1 { font-family: Fredoka, sans-serif; font-size: 1.6rem; margin: 0 0 0.5rem; }
.pro-portal__lead { color: var(--ink-600); margin: 0 0 1.25rem; }
.pro-portal__form label { display: block; margin-bottom: 10px; font-weight: 600; font-size: 0.88rem; }
.pro-portal__form input,
.pro-portal__form select,
.pro-portal__form textarea {
    width: 100%;
    margin-top: 4px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(109, 181, 168, 0.35);
    font: inherit;
}
.pro-portal__fieldset { border: 1px solid var(--sage-100); border-radius: 12px; padding: 12px; margin: 0 0 1rem; }
.pro-portal__fieldset legend { font-weight: 700; padding: 0 6px; }
.pro-portal__submit {
    display: inline-block;
    padding: 10px 18px;
    border: none;
    border-radius: 999px;
    background: var(--sage-600);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}
.pro-portal__error { color: #b45309; font-weight: 600; }
.pro-portal__success { color: var(--sage-600); font-weight: 600; }
.pro-portal__foot { margin-top: 1rem; font-size: 0.9rem; }
.pro-portal__status-badge {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.pro-portal__status-badge--pending { background: #fff4e1; color: #92400e; }
.pro-portal__status-badge--approved { background: var(--sage-100); color: var(--sage-600); }
.pro-portal__status-badge--rejected { background: #fceee9; color: #9f1239; }

/* —— Cadastro de profissional (layout do site) —— */
.pro-register-panel {
    background: #fff;
    border: 1px solid rgba(109, 181, 168, 0.28);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1.5rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
}
.pro-register__section { margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--sage-100); }
.pro-register__section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pro-register__section-title {
    font-family: Fredoka, sans-serif;
    font-size: 1.1rem;
    color: var(--sage-600);
    margin: 0 0 0.85rem;
}
.pro-register__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 640px) {
    .pro-register__grid { grid-template-columns: 1fr 1fr; }
    .pro-register__field--full { grid-column: 1 / -1; }
    .pro-register__field--wide { grid-column: 1 / -1; }
}
.pro-register__field { display: flex; flex-direction: column; gap: 4px; }
.pro-register__field > span { font-size: 0.82rem; font-weight: 700; color: var(--ink-700); }
.pro-register__field input,
.pro-register__field select,
.pro-register__field textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(109, 181, 168, 0.35);
    font: inherit;
    background: #fff;
    color: var(--ink-800);
}
.pro-register__field input:focus,
.pro-register__field select:focus,
.pro-register__field textarea:focus {
    outline: none;
    box-shadow: var(--ring);
    border-color: var(--sage-500);
}
.pro-register__field select:disabled { opacity: 0.65; cursor: not-allowed; }
.pro-register__field--check {
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
.pro-register__field--check input[type="checkbox"] {
    width: auto;
    margin: 0;
}
.pro-portal__check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
}
.pro-portal__check input { width: auto; }
.pro-register__file { padding: 8px 0; border: none; }
.pro-register__hint { font-size: 0.8rem; color: var(--ink-600); }
.pro-register__hint--block { margin: 0 0 12px; }
.pro-register__photo-preview {
    margin-top: 8px;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--sage-100);
}
.pro-register__photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.pro-register__alert {
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 1rem;
}
.pro-register__alert--error { background: #fff4e1; color: #92400e; border: 1px solid #f5c842; }
.pro-register__alert--ok { background: var(--sage-50); color: var(--sage-600); border: 1px solid var(--sage-400); }
.pro-register__actions { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.pro-register__foot { font-size: 0.9rem; color: var(--ink-600); margin: 0; }
.pro-register__foot a { color: var(--sage-600); font-weight: 700; }
.pro-register__after { margin-top: 1rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}
.btn-primary {
    background: var(--sage-600);
    color: #fff;
}
.btn-primary:hover { background: var(--sage-500); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }


/* =========================================================
   AJUSTES FINAIS RESPONSIVOS
   ========================================================= */
@media (max-width: 480px) {
    .section-subtitle { font-size: 1rem; }
    #float-whatsapp { width: 54px; height: 54px; font-size: 1.6rem; right: 16px; bottom: 16px; }
    .donate-card { padding: 22px 18px; }
    .mag-cover-photo { box-shadow: 6px 6px 0 var(--sage-100); }
}
