/* ============================================
   ELEVATE â€” GSAP 3.14.2 | Sem Three.js
   ============================================ */

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

:root {
    --bg:    #030308;
    --text:  rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.55);
    --p:     #5b2ce9;
    --p2:    #7c55f5;
    --p3:    #a07ff8;
    --pglow: rgba(91, 44, 233, 0.45);
    --fh: 'Space Grotesk', sans-serif;
    --fb: 'Inter', sans-serif;
}

html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--fb);
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }
img { display: block; max-width: 100%; }
strong { color: var(--text); font-weight: 600; }
.accent { color: var(--p2); }

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    color: var(--p3);
    text-transform: uppercase;
    margin-bottom: 20px;
}

h2 {
    font-size: 3.8vw;
    font-family: var(--fh);
    line-height: 1.15;
    font-weight: 700;
}

/* ---- SCROLL SMOOTHER ---- */
/* ScrollSmoother removido â€” wrapper Ã© container neutro */
#smooth-wrapper {
    width: 100%;
}
#smooth-content { width: 100%; }

/* ---- PRELOADER ---- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.preloader-text {
    font-size: 56px;
    font-weight: 700;
    font-family: var(--fh);
    color: var(--text);
    letter-spacing: -.02em;
}

/* ---- HEADER ---- */
header {
    width: 100%;
    position: fixed;
    top: 0; left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5% 4vw;
    z-index: 100;
    mix-blend-mode: difference;
}
.header-logo { height: 22px; filter: brightness(10); }
.header-cta {
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 40px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, border-color .2s;
}
.header-cta:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.6);
}

/* ---- MAIN (hero container â€” pinned desktop) ---- */
main {
    width: 100%;
    height: 100lvh;
    overflow: hidden;
    position: relative;
}

/* ---- HERO ---- */
.hero {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.hero .midiaBackground::before {
    content: "";
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(3,3,8,.65) 0%, rgba(3,3,8,.15) 50%, rgba(3,3,8,.5) 100%);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.midiaBackground {
    width: 100%; height: 100%;
    position: absolute;
    inset: 0;
}
.midiaBackground img,
.midiaBackground video {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
}

/* Astronaut */
.hero-astro {
    position: absolute;
    bottom: -2%; right: 4%;
    width: clamp(260px, 34vw, 560px);
    z-index: 2;
    pointer-events: none;
    mask-image: linear-gradient(to top, transparent 0%, black 20%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%, black 85%, transparent 100%);
}
.hero-astro img {
    filter: brightness(.5) contrast(1.3) saturate(.4);
    mix-blend-mode: lighten;
    width: 100%;
}

/* Watermark */
.hero-watermark {
    position: absolute;
    bottom: 8%; left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: var(--fh);
    font-size: clamp(16px, 3.2vw, 50px);
    font-weight: 800;
    letter-spacing: .2em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.07);
    text-transform: uppercase;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* Hero content */
.hero .conteudo {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Badge */
.cardSubtitulo {
    min-width: 280px;
    height: 46px;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5vw;
}
.cardSubtitulo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(91,44,233,.2);
    border-radius: 40px;
    box-shadow:
        -1px -1px 0 0 rgba(124,85,245,.4) inset,
         1px  1px 0 0 rgba(124,85,245,.4) inset;
}
.cardSubtitulo video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.cardSubtitulo h3 {
    position: relative;
    z-index: 2;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
    color: var(--p3);
    text-transform: uppercase;
    padding: 0 20px;
}

.hero .conteudo h2 { margin-bottom: 1.8vw; width: 72vw; }
.hero .conteudo p {
    font-size: clamp(15px, 1.1vw, 20px);
    line-height: 1.7;
    color: var(--muted);
    width: 50vw;
    margin-bottom: 40px;
}

/* BotÃµes */
.botoes { display: flex; gap: 20px; align-items: center; }

.botaoPrimario {
    background: var(--p);
    color: #fff;
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    border-radius: 40px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    text-transform: uppercase;
}
.botaoPrimario:hover { background: var(--p2); transform: translateY(-2px); }

.botaoSecundario {
    background: transparent;
    color: var(--text);
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    border-radius: 40px;
    padding: 13px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.2);
    cursor: pointer;
    transition: border-color .2s, background .2s, transform .2s;
}
.botaoSecundario:hover {
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.05);
    transform: translateY(-2px);
}

/* ---- TRANSITION STRIPS ---- */
.transition {
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
    z-index: 9;
    display: flex;
    pointer-events: none;
}
.transition div {
    width: 100%; height: 100%;
    background: var(--bg);
    transform: scaleY(0);
    transform-origin: bottom;
}

/* ---- TEXTO TRANSIÃ‡ÃƒO ---- */
.textoTransicao {
    width: 100%;
    height: 100lvh;
    position: absolute;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4vw;
    pointer-events: none;
}
.textoTransicao p {
    font-size: clamp(22px, 4.2vw, 68px);
    font-family: var(--fh);
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    width: 78vw;
    color: var(--text);
}

/* ============================================
   MARQUEE TICKER (CSS puro)
   ============================================ */
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.dor-ticker,
.manifesto-ticker {
    overflow: hidden;
    width: 100%;
    padding: 18px 0;
}
.dor-ticker {
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: 5vw;
}
.manifesto-ticker {
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 5vw;
}

.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-wrap: nowrap;
    width: max-content;
    animation: ticker 24s linear infinite;
    will-change: transform;
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
    padding-right: 32px;
}

.ticker-track span {
    font-family: var(--fh);
    font-size: clamp(11px, .9vw, 13px);
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
.ticker-track .sep { color: var(--p3); font-size: 8px; }

.ticker-track--white span { color: rgba(255,255,255,.75); }
.ticker-track--white .sep { color: rgba(255,255,255,.25); }

/* ============================================
   DOR
   ============================================ */
.dor {
    width: 100%;
    padding: 0;
    background: var(--bg);
    position: relative;
    z-index: 3;
    margin-top: -1px;
}
.dor-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4vw 8vw;
}
.dor-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 7vw 0 4vw;
}
.dor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}
.dor-card {
    background: #06060e;
    padding: 3.5vw;
    position: relative;
    transition: background .3s;
}
.dor-card:hover { background: #0c0c1a; }
.dor-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(91,44,233,.12);
    pointer-events: none;
    transition: border-color .3s;
}
.dor-card:hover::before { border-color: rgba(91,44,233,.35); }

.dor-num {
    display: block;
    font-family: var(--fh);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--p);
    margin-bottom: 20px;
}
.dor-card h3 {
    font-family: var(--fh);
    font-size: clamp(18px, 1.6vw, 28px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
}
.dor-card p {
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.7;
    color: var(--muted);
}

/* ============================================
   CTA â€” FormulÃ¡rio
   ============================================ */
.cta-section {
    background: var(--bg);
    padding: 10vw 4vw;
    position: relative;
    z-index: 3;
    margin-top: -1px;
    display: flex;
    justify-content: center;
}
.cta-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(circle, var(--pglow) 0%, transparent 65%);
    opacity: .22;
    pointer-events: none;
}
.cta-inner {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-inner h2 { margin-bottom: 16px; }
.cta-sub {
    font-size: clamp(14px, 1.05vw, 17px);
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 52px;
}
.cta-form { width: 100%; text-align: left; }
.cf-row { display: flex; gap: 16px; margin-bottom: 16px; }
.cf-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.cf-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.cf-group input {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--fb);
    color: var(--text);
    outline: none;
    transition: border-color .2s;
}
.cf-group input:focus { border-color: var(--p); }
.cf-group input::placeholder { color: rgba(255,255,255,.22); }
.cf-submit {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 18px;
    margin-top: 8px;
    border-radius: 10px;
    transition: background .2s, transform .2s, opacity .2s;
}
.cf-submit:disabled { opacity: .7; cursor: default; transform: none !important; }

/* ============================================
   SERVIÃ‡OS
   ============================================ */
.servicos {
    width: 100%;
    padding: 0;
    background: var(--bg);
    position: relative;
    z-index: 3;
    margin-top: -1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4vw;
}
.servicos-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8vw 4vw 0;
}
.servicos-header h2 { margin-bottom: 16px; }
.servicos-header p {
    font-size: clamp(14px, 1.05vw, 18px);
    color: var(--muted);
    max-width: 480px;
}

/* Video de apresentaÃ§Ã£o */
.services-video-wrap {
    width: 100%;
    padding: 0 4vw;
    max-width: 960px;
}
.services-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #07070f;
    border: 1px solid rgba(91,44,233,.2);
}
.services-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}
.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #07070f;
    z-index: 2;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
    padding: 24px;
    border-radius: 20px;
}
.video-placeholder span { font-size: 42px; line-height: 1; }
.video-placeholder p { font-size: 14px; color: var(--muted); }
.video-placeholder small { font-size: 11px; color: rgba(255,255,255,.2); }

/* Cards de serviÃ§o */
.servicos-lista {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding-bottom: 6vw;
}
.projeto-link {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.projeto {
    width: 60%;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    border-radius: 3vw;
    aspect-ratio: 16 / 7;
    position: relative;
    cursor: pointer;
}
.srv-overlay {
    position: relative;
    z-index: 2;
    padding: clamp(24px, 3vw, 52px);
    width: 100%;
    background: linear-gradient(to top, rgba(3,3,8,.85) 0%, rgba(3,3,8,.05) 100%);
    transition: background .4s;
}
.projeto:hover .srv-overlay {
    background: linear-gradient(to top, rgba(3,3,8,.95) 0%, rgba(3,3,8,.2) 100%);
}
.srv-num-big {
    display: block;
    font-family: var(--fh);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--p3);
    margin-bottom: 10px;
}
.srv-overlay h3 {
    font-family: var(--fh);
    font-size: clamp(20px, 2.2vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.15;
}
.srv-overlay p {
    font-size: clamp(13px, .95vw, 16px);
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    max-width: 480px;
}

/* Cores por serviÃ§o */
.srv-1 { background: linear-gradient(135deg, #0e0820 0%, #2a1070 50%, #5b2ce9 100%); }
.srv-2 { background: linear-gradient(135deg, #050515 0%, #0f1f60 50%, #2a4abf 100%); }
.srv-3 { background: linear-gradient(135deg, #080818 0%, #1a0a50 50%, #7c1fb0 100%); }
.srv-4 { background: linear-gradient(135deg, #0a0515 0%, #2d0f55 50%, #9b35c5 100%); }
.srv-5 { background: linear-gradient(135deg, #050a1a 0%, #0a2050 50%, #1a5ccc 100%); }

/* ============================================
   ANIMATIONS wrapper + MANIFESTO
   ============================================ */
.animations {
    width: 100%;
    position: relative;
}

.manifesto {
    width: 100%;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.manifesto-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 4vw;
}

.m-text {
    width: 100%;
}

.manifesto-cta { margin-top: 8px; }

/* ============================================
   FOOTER
   ============================================ */
footer {
    width: 100%;
    min-height: 60vh;
    display: flex;
    padding: 8vw 4vw 4vw;
    position: relative;
    align-items: flex-end;
    gap: 32px;
    z-index: 3;
    background: var(--bg);
}
footer .midiaBackground::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3,3,8,.55) 0%, rgba(3,3,8,.25) 60%, rgba(3,3,8,.85) 100%);
    z-index: 1;
}
.elevateFooter,
.footer-cta-content {
    position: relative;
    z-index: 2;
    width: 50%;
}
.elevateFooter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ft-logo { display: block; width: auto; height: 26px; max-width: 160px; object-fit: contain; filter: brightness(10); opacity: .8; }
.elevateFooter div { display: flex; gap: 24px; }
.elevateFooter p,
.elevateFooter a { font-size: 13px; color: var(--muted); }
.elevateFooter a:hover { color: var(--text); }

.footer-cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer-cta-content h2 {
    text-align: end;
    font-size: clamp(22px, 3vw, 46px);
    line-height: 1.2;
    margin-bottom: clamp(24px, 2vw, 40px);
}
footer .botoes { justify-content: flex-end; }

/* ============================================
   DOR CAROUSEL â€” WebHub Etapas style
   ============================================ */
.dor-carousel {
    display: grid;
    grid-template-columns: 60px 1fr 1.4fr;
    gap: 0 4vw;
    min-height: 55vh;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 5vw 0 8vw;
}

.dc-nums {
    display: flex;
    flex-direction: column;
    gap: 28px;
    border-left: 1px solid rgba(255,255,255,.08);
    padding-left: 20px;
}
.dc-num-item { display: flex; align-items: center; }
.dc-n {
    font-family: var(--fh);
    font-size: clamp(13px, 1.1vw, 18px);
    font-weight: 700;
    letter-spacing: .1em;
    color: #fff;
    text-shadow: 0 0 18px rgba(255,255,255,.18), 0 0 22px rgba(124,85,245,.28);
    transition: color .4s, text-shadow .4s;
}
.dc-num-item.is-active .dc-n {
    font-family: var(--fh);
    font-size: clamp(13px, 1.1vw, 18px);
    font-weight: 700;
    letter-spacing: .1em;
    color: #fff;
    text-shadow: 0 0 18px rgba(255,255,255,.18), 0 0 22px rgba(124,85,245,.28);
    transition: color .4s, text-shadow .4s;
}

.dc-visual-col {
    position: relative;
    aspect-ratio: 1;
    max-width: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dc-vis {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.dc-big-num {
    font-family: var(--fh);
    font-size: clamp(120px, 20vw, 320px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(124,85,245,.38);
    line-height: 1;
    position: relative;
    z-index: 1;
    user-select: none;
}
.dc-blob {
    position: absolute;
    width: 55%; height: 55%;
    border-radius: 50%;
    opacity: .7;
    filter: blur(40px);
}

.dc-content-col {
    position: relative;
    min-height: 340px;
    overflow: hidden;
}
.dc-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    width: 100%;
}
.dc-slide h3 {
    font-family: var(--fh);
    font-size: clamp(22px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}
.dc-slide p {
    font-size: clamp(14px, 1.05vw, 17px);
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
}

/* Mobile: stack carousel vertically */
@media (max-width: 768px) {
    .dor-carousel {
        grid-template-columns: 1fr;
        padding: 4vw 0 8vw;
        gap: 0;
    }
    .dc-nums { flex-direction: row; border-left: none; padding-left: 0; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 20px; margin-bottom: 24px; }
    .dc-visual-col { display: none; }
    .dc-content-col { min-height: auto; }
    .dc-slide { position: static; transform: none; opacity: 1; margin-bottom: 32px; }
    .dc-slide:last-child { margin-bottom: 0; }
}

/* ============================================
   PORTFÃ“LIO
   ============================================ */
.portfolio {
    background: var(--bg);
    padding: 8vw 4vw;
    position: relative;
    z-index: 3;
    margin-top: -1px;
}
.portfolio-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 5vw;
}
.portfolio-header p {
    font-size: clamp(14px, 1.05vw, 17px);
    color: var(--muted);
    max-width: 480px;
    margin-top: 12px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}
.pf-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pf-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.pf-img {
    position: absolute;
    inset: 0;
    transition: transform .4s;
}
.pf-item:hover .pf-img { transform: scale(1.04); }
.pf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3,3,8,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}
.pf-item:hover .pf-overlay { opacity: 1; }
.pf-overlay span {
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    padding: 10px 22px;
    border-radius: 40px;
}
.pf-info { padding: 0 4px; }
.pf-info h4 {
    font-family: var(--fh);
    font-size: clamp(15px, 1.1vw, 18px);
    font-weight: 700;
    margin-bottom: 5px;
}
.pf-info span {
    font-size: 12px;
    color: var(--p3);
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ============================================
   BLOG
   ============================================ */
.blog {
    background: var(--bg);
    padding: 8vw 4vw 6vw;
    position: relative;
    z-index: 3;
    margin-top: -1px;
    border-top: 1px solid rgba(255,255,255,.04);
}
.blog-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 5vw;
}
.blog-header p {
    font-size: clamp(14px, 1.05vw, 17px);
    color: var(--muted);
    max-width: 480px;
    margin-top: 12px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}
.blog-card {
    display: flex;
    flex-direction: column;
    background: #06060e;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.05);
    transition: border-color .3s, transform .3s;
}
.blog-card:hover {
    border-color: rgba(91,44,233,.3);
    transform: translateY(-4px);
}
.blog-thumb {
    width: 100%;
    aspect-ratio: 16 / 8;
    flex-shrink: 0;
}
.blog-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.blog-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--p3);
}
.blog-body h4 {
    font-family: var(--fh);
    font-size: clamp(15px, 1.1vw, 18px);
    font-weight: 700;
    line-height: 1.35;
}
.blog-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
}
.blog-date {
    font-size: 11px;
    color: rgba(255,255,255,.25);
    letter-spacing: .05em;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1000px) {
    h2 { font-size: 5.5vw; }
    .hero .conteudo h2 { width: 90vw; }
    .hero .conteudo p { width: 80vw; }
    .dor-grid { grid-template-columns: 1fr; }
    .projeto { width: 80%; }
    footer {
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        gap: 60px;
        padding: 80px 4vw;
    }
    .elevateFooter, .footer-cta-content { width: 100%; align-items: center; }
    .footer-cta-content h2 { text-align: center; font-size: 6vw; }
    footer .botoes { justify-content: center; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Desativa efeitos de transiÃ§Ã£o no hero (mobile) */
    .transition,
    .textoTransicao { display: none; }

    .hero { padding: 40px 5vw; }
    .hero .conteudo { align-items: flex-start; text-align: left; }
    .hero .conteudo h2 { width: 100%; font-size: 9vw; }
    .hero .conteudo p { width: 100%; font-size: 15px; }
    .cardSubtitulo { margin: 0 auto; }
    .botoes { flex-direction: column; width: 100%; }
    .botaoPrimario, .botaoSecundario { justify-content: center; width: 100%; }

    h2 { font-size: 7.5vw; }
    .manifesto-content { gap: 28px; padding: 10vw 5vw; }

    .dor-card { padding: 7vw; }
    .projeto { width: 92%; border-radius: 6vw; }
    .cf-row { flex-direction: column; }
    .services-video-wrap { padding: 0 5vw; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
}

.no-break {
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 768px) {
    main {
        height: auto;
        min-height: 100svh;
    }

    .hero {
        min-height: 100svh;
        padding: 118px 5vw 44px;
        align-items: flex-start;
    }

    .cardSubtitulo {
        min-width: 0;
        width: auto;
        max-width: 100%;
        margin: 0 0 18px;
    }

    .hero-astro {
        right: -8vw;
        bottom: 0;
        width: clamp(190px, 46vw, 280px);
        opacity: 0.72;
    }

    .hero-watermark {
        display: none;
    }

    .dor,
    .cta-section,
    .servicos,
    .portfolio,
    .blog,
    .manifesto,
    footer {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .dor-header,
    .servicos-header,
    .portfolio-header,
    .blog-header {
        margin-bottom: 32px;
    }

    .cta-inner {
        padding: 26px 18px;
        border-radius: 22px;
    }

    .services-video,
    .services-video iframe {
        min-height: 220px;
        border-radius: 22px;
    }

    footer {
        gap: 36px;
        padding-top: 64px;
        padding-bottom: 28px;
    }

    .footer-cta-content h2 {
        font-size: clamp(32px, 9vw, 44px);
    }

    .elevateFooter {
        gap: 14px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 110px;
    }

    .hero .conteudo h2 {
        font-size: 10.5vw;
    }

    .hero .conteudo p,
    .portfolio-header p,
    .blog-header p,
    .servicos-header p,
    .cta-sub {
        font-size: 14px;
        line-height: 1.65;
    }

    .cardSubtitulo h3 {
        font-size: 10px;
        letter-spacing: 0.12em;
    }
}


