/* =========================================================
   Águia Brasil — Camada Premium
   Animações, efeitos cinéticos e detalhes de polimento.
   Carregada APÓS o style.css para sobrescrever pontos chave.
   ========================================================= */

/* -------- 1. Loader inicial -------- */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--color-bg);
    display: grid;
    place-items: center;
    transition: opacity 600ms ease, visibility 600ms ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader__mark {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(140deg, #18305a 0%, #07101f 100%);
    border: 1px solid var(--color-border);
    position: relative;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 0 rgba(201, 209, 222, 0.0);
    animation: loaderPulse 1.6s ease-in-out infinite;
}

.page-loader__mark img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    animation: loaderFloat 2.4s ease-in-out infinite;
    filter: drop-shadow(0 4px 14px rgba(201, 209, 222, 0.18));
}

@keyframes loaderPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 209, 222, 0); }
    50%      { box-shadow: 0 0 0 14px rgba(201, 209, 222, 0.04); }
}

@keyframes loaderFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

/* -------- 2. Cursor follower (desktop) -------- */
@media (hover: hover) and (pointer: fine) {
    .cursor-glow {
        position: fixed;
        pointer-events: none;
        width: 480px;
        height: 480px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(47, 107, 255, 0.10) 0%, rgba(47, 107, 255, 0) 60%);
        transform: translate(-50%, -50%);
        z-index: 1;
        mix-blend-mode: screen;
        transition: opacity 400ms ease;
        opacity: 0;
        will-change: transform;
    }

    body:hover .cursor-glow {
        opacity: 1;
    }
}

/* -------- 3. Hero — blobs animados + grão sutil -------- */
.hero {
    position: relative;
    isolation: isolate;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.hero__blob--a {
    width: 520px;
    height: 520px;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle, rgba(47, 107, 255, 0.55), transparent 60%);
    animation: blobDrift 18s ease-in-out infinite;
}

.hero__blob--b {
    width: 420px;
    height: 420px;
    bottom: -180px;
    left: -80px;
    background: radial-gradient(circle, rgba(201, 209, 222, 0.22), transparent 60%);
    animation: blobDrift 22s ease-in-out infinite reverse;
}

.hero__blob--c {
    width: 320px;
    height: 320px;
    top: 30%;
    left: 35%;
    background: radial-gradient(circle, rgba(47, 107, 255, 0.18), transparent 60%);
    animation: blobDrift 26s ease-in-out infinite;
}

@keyframes blobDrift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33%      { transform: translate3d(40px, -30px, 0) scale(1.08); }
    66%      { transform: translate3d(-30px, 40px, 0) scale(0.94); }
}

.hero__grain {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero__inner {
    position: relative;
    z-index: 2;
}

/* Pequeno chip "live" no eyebrow */
.hero__eyebrow::before {
    animation: pulseDot 2.4s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 209, 222, 0.6); }
    50%      { box-shadow: 0 0 0 6px rgba(201, 209, 222, 0); }
}

/* Título com animação de entrada por linha */
.hero__title .line {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.hero__title .line > span {
    display: inline-block;
    transform: translateY(110%);
    animation: lineUp 900ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hero__title .line:nth-child(1) > span { animation-delay: 120ms; }
.hero__title .line:nth-child(2) > span { animation-delay: 260ms; }
.hero__title .line:nth-child(3) > span { animation-delay: 400ms; }

@keyframes lineUp {
    to { transform: translateY(0); }
}

.hero__lead,
.hero__actions,
.hero__meta {
    opacity: 0;
    transform: translateY(14px);
    animation: heroFade 800ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hero__lead    { animation-delay: 520ms; }
.hero__actions { animation-delay: 640ms; }
.hero__meta    { animation-delay: 780ms; }

@keyframes heroFade {
    to { opacity: 1; transform: none; }
}

.hero__card {
    animation: cardRise 1000ms cubic-bezier(0.22, 0.61, 0.36, 1) 360ms both,
               cardFloat 8s ease-in-out 1.5s infinite;
}

@keyframes cardRise {
    from { opacity: 0; transform: translateY(28px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* -------- 4. Botões — efeito magnético e brilho -------- */
.btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 220ms var(--ease),
                background 280ms var(--ease),
                color 280ms var(--ease),
                border-color 280ms var(--ease),
                box-shadow 320ms var(--ease);
    will-change: transform;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 70%);
    transform: translateX(-120%);
    transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: -1;
    pointer-events: none;
}

.btn:hover::before {
    transform: translateX(120%);
}

.btn--primary {
    box-shadow: 0 14px 30px -16px rgba(47, 107, 255, 0.9),
                0 0 0 0 rgba(47, 107, 255, 0.0);
}

.btn--primary:hover {
    box-shadow: 0 18px 40px -16px rgba(47, 107, 255, 1),
                0 0 0 6px rgba(47, 107, 255, 0.12);
}

.btn--silver:hover {
    filter: brightness(1.08) saturate(1.05);
}

/* -------- 5. Trust bar — marquee infinito -------- */
.trust-bar {
    overflow: hidden;
    position: relative;
}

.trust-bar__inner {
    flex-wrap: nowrap;
    width: max-content;
    gap: 56px;
    animation: marquee 38s linear infinite;
}

.trust-bar:hover .trust-bar__inner {
    animation-play-state: paused;
}

.trust-bar::before,
.trust-bar::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.trust-bar::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg-alt) 0%, transparent 100%);
}

.trust-bar::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-bg-alt) 0%, transparent 100%);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* -------- 6. Section eyebrow com linha animada -------- */
.section-eyebrow {
    position: relative;
    padding-left: 38px;
}

.section-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--gradient-silver);
    transform-origin: left;
    animation: eyebrowDraw 1200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    transform: scaleX(0);
}

@keyframes eyebrowDraw {
    to { transform: scaleX(1); }
}

/* -------- 7. Service cards — tilt 3D + borda gradient animada -------- */
.services-grid {
    perspective: 1200px;
}

.service-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 400ms var(--ease),
                border-color 400ms var(--ease),
                background 400ms var(--ease),
                box-shadow 500ms var(--ease);
    will-change: transform;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from var(--angle, 0deg),
        rgba(47, 107, 255, 0.6),
        rgba(201, 209, 222, 0.4),
        rgba(47, 107, 255, 0.6));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 400ms var(--ease);
    pointer-events: none;
    animation: borderSpin 6s linear infinite;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes borderSpin {
    to { --angle: 360deg; }
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.85),
                0 0 0 1px rgba(201, 209, 222, 0.08);
}

.service-card:hover::before {
    opacity: 0.7;
}

.service-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background:
        linear-gradient(140deg, #f7f9fc 0%, #d8dee9 45%, #9ea7ba 100%);
    color: #0a1729;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    position: relative;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        inset 0 -3px 8px rgba(10, 23, 41, 0.22),
        0 12px 28px -14px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
    isolation: isolate;
}

.service-card__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.55) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}

.service-card__icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 22px;
    background: radial-gradient(circle at center, rgba(47, 107, 255, 0.35) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 400ms var(--ease), transform 400ms var(--ease);
    z-index: -1;
    transform: scale(0.85);
}

.service-card:hover .service-card__icon {
    transform: scale(1.08) rotate(-2deg);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -3px 8px rgba(10, 23, 41, 0.25),
        0 18px 36px -12px rgba(47, 107, 255, 0.35);
}

.service-card:hover .service-card__icon::before {
    opacity: 1;
    transform: scale(1);
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.4));
}

.service-card__icon svg .accent {
    fill: rgba(47, 107, 255, 0.18);
    stroke: none;
}

.service-card__icon svg .dot {
    fill: currentColor;
    stroke: none;
}

/* Brilho seguindo cursor dentro do card */
.service-card .spotlight {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%),
        rgba(255, 255, 255, 0.08),
        transparent 40%);
    opacity: 0;
    transition: opacity 300ms var(--ease);
    pointer-events: none;
}

.service-card:hover .spotlight {
    opacity: 1;
}

/* -------- 8. Counters animados -------- */
.hero__meta-item strong {
    font-variant-numeric: tabular-nums;
}

/* -------- 9. Reveal melhorado com escalonamento -------- */
.reveal {
    transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
                filter 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

.reveal[data-reveal-delay="1"] { transition-delay: 80ms;  }
.reveal[data-reveal-delay="2"] { transition-delay: 160ms; }
.reveal[data-reveal-delay="3"] { transition-delay: 240ms; }
.reveal[data-reveal-delay="4"] { transition-delay: 320ms; }
.reveal[data-reveal-delay="5"] { transition-delay: 400ms; }

/* -------- 10. Header — fica mais nítido ao rolar -------- */
.site-header {
    transition: background 320ms var(--ease),
                border-color 320ms var(--ease),
                box-shadow 320ms var(--ease);
}

.site-header.is-scrolled {
    background: rgba(5, 11, 23, 0.88);
    border-bottom-color: rgba(201, 209, 222, 0.18);
    box-shadow: 0 10px 30px -22px rgba(0, 0, 0, 0.8);
}

/* Brand sutilmente animado */
.brand:hover .brand__mark svg {
    animation: brandSpin 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes brandSpin {
    from { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(8deg)  scale(1.08); }
    to   { transform: rotate(0deg) scale(1); }
}

/* Brand baseado em imagem (logo PNG) */
.brand--logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    line-height: 0;
    transition: transform 320ms var(--ease), filter 320ms var(--ease);
}

.brand--logo img {
    height: 56px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 18px rgba(201, 209, 222, 0.12));
    transition: transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1),
                filter 320ms var(--ease);
}

.brand--logo:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0 8px 22px rgba(201, 209, 222, 0.22));
}

.site-footer .brand--logo img {
    height: 60px;
}

@media (max-width: 720px) {
    .brand--logo img {
        height: 44px;
    }
}

/* Link de navegação com underline líquido */
.nav__link::after {
    height: 2px;
    background: var(--gradient-silver);
    border-radius: 2px;
}

/* -------- 11. Dropdown — entrada mais natural -------- */
.dropdown {
    transition: opacity 280ms var(--ease),
                transform 320ms var(--ease),
                visibility 280ms var(--ease);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown {
    transform: translateX(-50%) translateY(-10px) scale(0.98);
}

.dropdown__group a {
    position: relative;
    padding-left: 14px;
    transition: padding 220ms var(--ease), color 220ms var(--ease);
}

.dropdown__group a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: var(--color-silver-dim);
    transform: translateY(-50%);
    transition: width 220ms var(--ease), background 220ms var(--ease);
}

.dropdown__group a:hover {
    padding-left: 20px;
}

.dropdown__group a:hover::before {
    width: 12px;
    background: var(--color-silver-bright);
}

/* -------- 12. Post cards — overlay com gradient animado -------- */
.post-card {
    transition: transform 420ms var(--ease),
                border-color 420ms var(--ease),
                box-shadow 500ms var(--ease);
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.85);
}

.post-card__cover {
    overflow: hidden;
    position: relative;
}

.post-card__cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(47, 107, 255, 0.0) 0%,
        rgba(47, 107, 255, 0.0) 40%,
        rgba(201, 209, 222, 0.18) 100%);
    transform: translateX(-100%);
    transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 2;
}

.post-card:hover .post-card__cover::before {
    transform: translateX(0);
}

/* Variante com foto de capa */
.post-card__cover--photo {
    background: #050b17;
    box-shadow:
        inset 0 -80px 80px -40px rgba(5, 11, 23, 0.75),
        inset 0 30px 40px -30px rgba(5, 11, 23, 0.4);
}

.post-card__cover--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
                filter 600ms var(--ease);
    filter: saturate(1.05);
}

.post-card:hover .post-card__cover--photo img {
    transform: scale(1.06);
}

/* Garante que o label fica acima da imagem e da gradient */
.post-card__cover[data-label]::after {
    z-index: 3;
}

/* -------- 13. Faixa CTA — fundo com onda animada -------- */
.cta-band {
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: -50% -10%;
    background: conic-gradient(from 0deg,
        rgba(47, 107, 255, 0.16),
        transparent 35%,
        rgba(201, 209, 222, 0.10) 60%,
        transparent 80%);
    animation: ctaSpin 30s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

.cta-band__inner {
    position: relative;
    z-index: 1;
}

@keyframes ctaSpin {
    to { transform: rotate(360deg); }
}

/* -------- 14. Form — micro-interações nos inputs -------- */
.field {
    position: relative;
}

.field input,
.field select,
.field textarea {
    transition: border-color 240ms var(--ease),
                box-shadow 240ms var(--ease),
                background 240ms var(--ease),
                transform 240ms var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    transform: translateY(-1px);
}

.field--file label.upload {
    overflow: hidden;
    position: relative;
}

.field--file label.upload::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 70%);
    transform: translateX(-120%);
    transition: transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
    pointer-events: none;
}

.field--file label.upload:hover::after {
    transform: translateX(120%);
}

/* -------- 15. WhatsApp FAB — anel pulsante -------- */
.whatsapp-fab {
    position: fixed;
    will-change: transform;
}

.whatsapp-fab::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: fabRing 2.4s ease-out infinite;
}

@keyframes fabRing {
    0%   { transform: scale(0.85); opacity: 0.7; }
    100% { transform: scale(1.25); opacity: 0;   }
}

/* -------- 16. Scrollbar customizada -------- */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #050b17;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #18305a, #07101f);
    border-radius: 10px;
    border: 2px solid #050b17;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2a4a85, #0a1729);
}

/* -------- 17. Seleção de texto -------- */
::selection {
    background: rgba(47, 107, 255, 0.45);
    color: #ffffff;
}

/* -------- 18. Transição entre páginas -------- */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: var(--color-bg);
    transform: translateY(100%);
    pointer-events: none;
}

.page-transition.is-entering {
    animation: pageOut 700ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes pageOut {
    0%   { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

/* -------- 19. Glow no aside / cards laterais -------- */
.aside-card {
    position: relative;
    isolation: isolate;
}

.aside-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(47, 107, 255, 0.25), transparent 60%);
    z-index: -1;
    opacity: 0.6;
}

/* -------- 19b. Painel institucional da seção Sobre -------- */
.about-panel {
    position: relative;
    border-radius: var(--radius-lg);
    padding: clamp(28px, 3.5vw, 44px);
    background:
        radial-gradient(circle at 100% 0%, rgba(47, 107, 255, 0.18) 0%, transparent 55%),
        linear-gradient(160deg, rgba(24, 48, 90, 0.55) 0%, rgba(11, 26, 49, 0.75) 60%, rgba(7, 16, 31, 0.9) 100%);
    border: 1px solid var(--color-border);
    box-shadow:
        0 30px 60px -28px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(201, 209, 222, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    isolation: isolate;
    overflow: hidden;
    color: var(--color-text);
    transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}

.about-panel:hover {
    transform: translateY(-3px);
    box-shadow:
        0 40px 80px -28px rgba(0, 0, 0, 0.95),
        0 0 0 1px rgba(201, 209, 222, 0.1);
}

/* Grid sutil de fundo */
.about-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at top right, #000 20%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

/* Marca d'água — silhueta de asas no canto */
.about-panel__corner {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    height: 220px;
    opacity: 0.06;
    pointer-events: none;
    background:
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.9) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(47, 107, 255, 0.7) 0%, transparent 55%);
    filter: blur(20px);
    z-index: 0;
}

.about-panel > * {
    position: relative;
    z-index: 1;
}

/* Chip "Atendendo desde 2018" */
.about-panel__chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: rgba(7, 16, 31, 0.55);
    border: 1px solid rgba(201, 209, 222, 0.18);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-silver);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 24px;
}

.about-panel__chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-silver);
    box-shadow: 0 0 0 0 rgba(201, 209, 222, 0.5);
    animation: pulseDot 2.4s ease-in-out infinite;
}

.about-panel__title {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    color: var(--color-heading);
    margin: 0 0 28px;
    line-height: 1.25;
    max-width: 24ch;
}

/* Grade de números */
.about-panel__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.about-panel__stat {
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(7, 16, 31, 0.45);
    border: 1px solid rgba(201, 209, 222, 0.08);
    transition: border-color 320ms var(--ease), transform 320ms var(--ease), background 320ms var(--ease);
}

.about-panel__stat:hover {
    border-color: rgba(201, 209, 222, 0.25);
    background: rgba(7, 16, 31, 0.7);
    transform: translateY(-2px);
}

.about-panel__stat strong {
    display: block;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.about-panel__stat span {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

/* Subtítulo das áreas */
.about-panel__subtitle {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-silver-dim);
    margin: 0 0 14px;
    font-weight: 600;
}

/* Tags das áreas */
.about-panel__tags {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-panel__tags li {
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: linear-gradient(140deg, rgba(201, 209, 222, 0.08), rgba(201, 209, 222, 0.02));
    border: 1px solid rgba(201, 209, 222, 0.14);
    font-size: 0.82rem;
    color: var(--color-silver-bright);
    transition: border-color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
    cursor: default;
}

.about-panel__tags li:hover {
    border-color: rgba(201, 209, 222, 0.35);
    background: linear-gradient(140deg, rgba(201, 209, 222, 0.18), rgba(201, 209, 222, 0.05));
    transform: translateY(-1px);
}

/* Bullets de garantia */
.about-panel__bullets {
    list-style: none;
    padding: 20px 0 0;
    margin: 0;
    border-top: 1px solid rgba(201, 209, 222, 0.1);
    display: grid;
    gap: 10px;
}

.about-panel__bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.93rem;
    color: var(--color-text);
}

.about-panel__bullets svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    padding: 4px;
    border-radius: 50%;
    background: var(--gradient-silver);
    color: #0a1729;
    box-sizing: content-box;
    box-shadow: 0 6px 14px -6px rgba(201, 209, 222, 0.35);
}

/* Sticky no desktop — acompanha a leitura */
@media (min-width: 1024px) {
    .about-panel {
        position: sticky;
        top: 110px;
        max-width: 520px;
        margin-left: auto;
    }
}

@media (max-width: 1024px) {
    .about-panel {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-panel__stats {
        grid-template-columns: 1fr;
    }
}

/* -------- 19c. Hero do post com foto cinematográfica -------- */
.page-hero--with-photo {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding: clamp(100px, 14vw, 160px) 0 clamp(48px, 6vw, 80px);
    isolation: isolate;
    background: #050b17;
}

.page-hero--with-photo .page-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.page-hero--with-photo .page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
    filter: saturate(1.1) contrast(1.05);
    transform: scale(1.04);
    animation: heroPhotoZoom 18s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroPhotoZoom {
    from { transform: scale(1.02) translate3d(0, 0, 0); }
    to   { transform: scale(1.1)  translate3d(-1%, -1%, 0); }
}

.page-hero--with-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(7, 16, 31, 0.55) 0%, rgba(7, 16, 31, 0.85) 70%, #050b17 100%),
        linear-gradient(90deg, rgba(7, 16, 31, 0.85) 0%, rgba(7, 16, 31, 0.35) 55%, transparent 100%);
    pointer-events: none;
}

.page-hero--with-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 120px;
    z-index: 1;
    background: linear-gradient(180deg, transparent, #07101f);
    pointer-events: none;
}

.page-hero--with-photo .page-hero__inner {
    position: relative;
    z-index: 2;
}

.page-hero--with-photo h1 {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
}

.page-hero--with-photo p {
    color: #cfd6e4;
    max-width: 640px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

@media (max-width: 720px) {
    .page-hero--with-photo {
        min-height: 380px;
        padding: 90px 0 40px;
    }
    .page-hero--with-photo .page-hero__media img {
        opacity: 0.45;
    }
}

/* -------- 20. Detalhes finais -------- */
img, svg {
    transition: opacity 300ms var(--ease);
}

a:focus-visible,
button:focus-visible {
    outline-offset: 4px;
}

/* Tipografia com features finas */
body {
    font-feature-settings: "ss01", "cv11", "kern";
    font-optical-sizing: auto;
}

/* Suaviza tudo */
* {
    -webkit-tap-highlight-color: transparent;
}

/* -------- 21. Suporte a reduced motion -------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .hero__blob,
    .cta-band::before,
    .whatsapp-fab::before {
        display: none;
    }
}
