:root {
    --paper: #fbfbf9;
    --paper-soft: #ffffff;
    --ink: #11110f;
    --muted: #6b6b6b;
    --line: rgba(17, 17, 15, 0.14);
    --blue: #0052cc;
    --blue-dark: #00245a;
    --green: #d7ff46;
    --rail: 0px;
    --radius: 34px;
    --title: 'Montserrat', sans-serif;
    --body: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--paper);
    overflow-x: clip;
}

body {
    margin: 0;
    overflow-x: clip;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
}

body.is-loading {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
}

a {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--title);
}

p, span, a, li, input, textarea, button {
    font-family: var(--body);
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: #fff;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader__mark {
    font-family: var(--title);
    font-size: clamp(2.5rem, 10vw, 9rem);
    letter-spacing: -0.08em;
    animation: loaderPulse 1.6s ease-in-out infinite;
}

.loader__mark em {
    color: #fff;
    font-style: normal;
    font-weight: 500; /* Mais fino conforme solicitado */
    margin-right: 0.2rem;
    display: inline-block;
}

.rail-nav {
    display: none;
}

.menu-button {
    display: none;
}

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    padding: 0 2rem;
    background: transparent; /* Volta a ser transparente no topo */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.whatsapp-float {
    position: fixed;
    bottom: clamp(1.5rem, 5vw, 2.5rem);
    right: clamp(1.5rem, 5vw, 2.5rem);
    width: 60px;
    height: 60px;
    background-color: var(--ink); 
    color: #fff;
    border-radius: 50%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #000;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.top-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}


.top-header:not(.is-scrolled) .top-header__logo img {
    filter: brightness(0) invert(1);
}

.top-header__inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.top-header__logo {
    opacity: 1; /* Sempre visível agora */
    visibility: visible;
    pointer-events: auto;
    transition: all 0.4s ease;
}

.top-header.is-scrolled .top-header__logo {
    opacity: 1;
}

/* Mantém a cor original da logo */
.top-header:not(.is-scrolled) .top-header__logo img {
    filter: none;
}

.top-header__logo img {
    height: 42px;
    width: auto;
}

.top-header__right {
    display: flex;
    align-items: stretch;
    gap: clamp(1.5rem, 3vw, 4rem);
    height: 100%;
}

.top-header__nav {
    display: flex;
    gap: 0;
    align-items: stretch;
    height: 100%;
}

.top-header__nav a {
    position: relative;
    font-size: 0.62rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: clamp(100px, 12vw, 140px); /* Ajuste dinâmico */
    color: #fff !important; /* Volta para branco no topo */
    transition: all 0.3s ease;
    transform: skewX(-20deg);
    margin-left: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.top-header__nav a span {
    transform: skewX(20deg);
    display: inline-block;
}

.top-header__nav a:nth-child(1) { background-color: #003399; z-index: 4; margin-left: 0; }
.top-header__nav a:nth-child(2) { background-color: #0052cc; z-index: 3; }
.top-header__nav a:nth-child(3) { background-color: #4995ff; z-index: 2; }
.top-header__nav a:nth-child(4) { 
    background-color: transparent; 
    z-index: 1; 
    color: #fff !important; /* Branco no topo por padrão */
}

.top-header.is-scrolled .top-header__nav a:nth-child(4) {
    color: var(--ink) !important; /* Preto ao rolar */
}

.top-header__nav a:nth-child(-n+3):hover {
    background-color: #fff !important;
    color: #000 !important;
}

.top-header__nav a:nth-child(4):hover {
    filter: brightness(0.8);
}

.top-header__actions {
    display: flex;
    align-items: center;
}

.pill-link--boxed {
    min-height: 42px;
    padding: 0 1.5rem;
    font-size: 0.72rem;
    font-weight: 900;
    background: transparent !important;
    border: 1px solid #fff !important; /* Branco no topo */
    color: #fff !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.top-header.is-scrolled .pill-link--boxed {
    border-color: var(--ink) !important;
    color: var(--ink) !important;
}

.pill-link--boxed:hover {
    background: var(--blue) !important;
    color: #fff !important;
    border-color: var(--blue) !important;
    transform: translateY(-2px) !important;
}

.menu-button {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background:
        radial-gradient(circle at 85% 8%, rgba(0, 82, 204, 0.42), transparent 18rem),
        linear-gradient(180deg, #12120f, #050505);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.65rem;
    padding: 6.5rem 1.2rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    color: #fff;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--title);
    font-size: clamp(2rem, 9vw, 4rem);
    font-weight: 700; /* Reduzido de 900 para consistência */
    line-height: 0.95;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.mobile-menu a:hover {
    color: var(--blue);
    transform: translateX(0.35rem);
}

/* Garante que nenhum elemento ultrapasse a largura da tela */

img, video, iframe {
    max-width: 100%;
    height: auto;
}

main,
.footer {
    padding-right: 0;
}


body,
main {
    min-width: 0;
    width: 100%;
}

body {
    max-width: 100vw;
}

h1,
h2,
h3,
p,
a,
span,
button,
input,
textarea {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.section {
    position: relative;
    width: 100%;
    max-width: 1440px; 
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem); 
}

.work,
.about,
.services,
.dev-tech,
.team-3d,
.image-river,
.proof,
.contact,
.partners,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.hero.section {
    max-width: none;
    margin: 0;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 5rem;
    position: relative;
}

.hero__eyebrow,
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.35em; /* Aumentado para visual premium */
    text-transform: uppercase;
}

.hero__eyebrow::before,
.kicker::before {
    content: '';
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: currentColor;
}

.hero-foto-1, .hero-foto-2 {
    display: none;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.hero__side img {
    width: 92px;
}

.hero__side p,
.section-head p,
.split-copy p,
.contact__copy p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    font-weight: 600;
    line-height: 1.6; /* Melhorado para blocos de texto */
    letter-spacing: -0.01em;
}

.pill-link,
.contact-form button {
    display: inline-flex;
    width: fit-content;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 1.8rem;
    border: 0;
    border-radius: 999px;
    background: #fff; /* Fundo branco solicitado */
    color: #000; /* Letras pretas */
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.25em; /* Aumentado para visual premium */
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pill-link:hover,
.contact-form button:hover {
    transform: translateY(-4px) scale(1.02);
    background: var(--blue); /* Animação azul no hover */
    color: #fff;
    box-shadow: 0 10px 20px rgba(7, 60, 255, 0.3);
}

.footer a[data-whatsapp] {
    display: inline-flex;
    width: fit-content;
    min-height: 70px;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    border: 0;
    border-radius: 999px;
    background: var(--blue) !important;
    color: #fff !important;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, background 0.25s ease;
}

.footer a[data-whatsapp]:hover {
    transform: translateY(-5px) scale(1.05);
    background: #fff !important;
    color: var(--ink) !important;
}

.pill-link--blue {
    background: var(--blue);
}

.pill-link--blue:hover {
    background: var(--ink) !important;
}

.hero__media {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.72fr);
    gap: 1rem;
    margin-top: clamp(2rem, 5vw, 4.5rem);
    align-items: end;
}

.hero__media > video,
.hero__photo {
    overflow: hidden;
    border-radius: var(--radius);
    background: #e5e5e7;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.12);
}

.hero__media > video,
.hero__media > .media-fill {
    width: 100%;
    aspect-ratio: 16 / 7; /* Mais horizontal para ficar "pequena" */
    object-fit: cover;
    max-height: 50vh;
}

.hero__photo {
    margin-bottom: -3rem;
}

.hero__photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.ticker {
    width: 110%;
    left: -5%;
    overflow: hidden;
    background: var(--blue);
    color: #fff;
    transform: rotate(-1.15deg) scale(1.02);
    transform-origin: center;
    position: relative;
    z-index: 2;
    margin-top: -1rem; /* Sobe a marquee para ficar mais próxima do herói */
}

.ticker__track {
    display: flex;
    width: max-content;
    gap: 1rem;
    padding: 1.05rem 0;
    font-family: var(--title);
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    animation: tickerMove 28s linear infinite;
}

.section-head {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    column-gap: clamp(2rem, 8vw, 6rem);
    row-gap: 1.5rem; 
    align-items: center; /* Centralizado verticalmente */
    margin-bottom: clamp(4rem, 8vw, 6rem);
}

.services .section-head {
    align-items: center;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
}

.services .head-side {
    align-items: flex-start;
    text-align: left;
    padding-left: clamp(1rem, 3vw, 3rem);
}

.services .section-head h2 {
    font-size: clamp(2.5rem, 7vw, 7.2rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.head-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end; 
    text-align: right; 
    justify-self: end; 
    margin-left: auto; 
    width: 100%;
    max-width: 500px; 
}

.small-logo-about {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    height: auto;
    display: block;
    margin-left: auto; 
    margin-right: 0;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.small-logo-about:hover {
    transform: scale(1.02);
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
}

.contact-logo-small {
    width: clamp(140px, 15vw, 220px);
    height: auto;
    display: block;
    margin: 0 auto;
}

.section-head .kicker {
    grid-column: 1 / -1;
}

.section-head h2,
.split-copy h2,
.contact__copy h2,
.footer h2 {
    margin: 0;
    font-family: var(--title);
    font-size: clamp(3rem, 7vw, 7.2rem); 
    line-height: 1.0; 
    letter-spacing: -0.05em; 
    text-transform: uppercase;
}

.section-head h2 em,
.split-copy h2 em {
    color: var(--blue);
    font-style: normal;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}

.project-card {
    position: relative;
    grid-column: span 5;
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #e5e5e7;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    isolation: isolate;
}

.project-card--wide {
    grid-column: span 7;
}

.project-card--tall {
    min-height: 620px;
}

.project-card img,
.project-card video {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), filter 0.35s ease;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.68));
    z-index: 1;
}

/* Ícone de Play Centralizado */
.project-card::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 5;
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding-left: 5px; /* Ajuste para centralizar o triângulo */
}

.project-card:hover::before {
    background: var(--blue);
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.5);
}

.project-card:hover img,
.project-card:hover video {
    transform: scale(1.12);
    filter: saturate(1.05) brightness(1.05);
}

.project-card > div {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.1rem;
    z-index: 2;
    color: #fff;
}

.project-card h3 {
    margin: 0;
    font-family: var(--title);
    font-size: clamp(2rem, 4vw, 4.6rem);
    line-height: 0.85;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.project-card p {
    margin: 0.35rem 0 0;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.view-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    display: grid;
    width: 4.7rem;
    height: 4.7rem;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    opacity: 0;
    transform: scale(0.55) rotate(-12deg);
    transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-card:hover .view-badge {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.about {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 6rem);
    align-items: center;
}

.about .section-head {
    grid-column: 1 / -1; /* Garante que o cabeçalho ocupe a largura total */
}

.about h2 {
    font-size: clamp(2.5rem, 6.5vw, 6.5rem);
    line-height: 0.95;
    z-index: 3;
}

.split-copy {
    position: sticky;
    top: 6rem;
    z-index: 5;
    display: grid;
    gap: 1.5rem;
    padding-right: 2rem; /* Espaço extra para não encostar na foto */
}

.photo-collage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(10, 1fr);
    aspect-ratio: 1.1 / 1; /* Mantém a forma da colagem sempre proporcional */
    width: 100%;
    max-width: 600px;
    gap: 0.5rem; 
    align-items: start;
    padding: 0;
    margin: 0 0 0 auto; /* Alinhado à direita no desktop */
}

.collage-item {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #e5e5e7;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    position: relative;
    opacity: 0;
    transform: scale(0);
}

.collage-item.is-visible {
    animation: popcornLoop 8s ease-in-out infinite;
}

@keyframes popcornLoop {
    0%, 100% { transform: scale(0); opacity: 0; }
    10% { transform: scale(1.05); opacity: 1; }
    45% { transform: scale(1); opacity: 1; }
    55% { transform: scale(0); opacity: 0; }
}

.collage-item:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10;
    animation-play-state: paused;
}

.collage-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-item--a {
    grid-column: 1 / span 8;
    grid-row: 1 / span 7;
    z-index: 1;
}
.collage-item--a.is-visible { 
    animation-delay: 0.2s;
    --rot: -2deg;
}

.collage-item--b {
    grid-column: 7 / span 6;
    grid-row: 2 / span 5;
    z-index: 2;
}
.collage-item--b.is-visible { 
    animation-delay: 1.5s;
    --rot: 3deg;
}

.collage-item--c {
    grid-column: 2 / span 5;
    grid-row: 6 / span 5;
    z-index: 3;
}
.collage-item--c.is-visible { 
    animation-delay: 3s;
    --rot: -3deg;
}

.collage-item--d {
    grid-column: 6 / span 6;
    grid-row: 6 / span 4;
    z-index: 4;
}
.collage-item--d.is-visible { 
    animation-delay: 4.5s;
    --rot: 2deg;
}

/* Ajuste no keyframes para incluir a rotação variável */
@keyframes popcornLoop {
    0%, 100% { transform: scale(0) rotate(var(--rot, 0deg)); opacity: 0; }
    10% { transform: scale(1.1) rotate(var(--rot, 0deg)); opacity: 1; }
    15%, 45% { transform: scale(1) rotate(var(--rot, 0deg)); opacity: 1; }
    55% { transform: scale(0) rotate(var(--rot, 0deg)); opacity: 0; }
}

/* --- TEAM 3D SNAKE SECTION --- */
.team-3d {
    position: relative;
    height: 400vh; /* Revertido para fotos da equipe */
    background: var(--paper);
}

.team-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    perspective: 1200px;
    padding-left: clamp(2rem, 6vw, 6rem);
}

.team-copy {
    position: relative;
    z-index: 10;
    max-width: 480px;
    padding-right: 2rem;
}

.team-copy h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
    margin: 1rem 0 2rem;
    text-transform: uppercase;
    font-family: var(--title);
}

.team-copy h2 em {
    color: var(--blue);
    font-style: normal;
}

.team-scene {
    position: absolute;
    right: 0;
    top: 0;
    width: 60vw;
    height: 100vh;
    transform-style: preserve-3d;
    pointer-events: none;
}

.team-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(260px, 24vw, 400px);
    aspect-ratio: 3 / 4; 
    margin: 0;
    margin-top: calc(clamp(260px, 24vw, 400px) * -0.66);
    margin-left: calc(clamp(260px, 24vw, 400px) * -0.5);
    will-change: transform, opacity;
    transform-style: preserve-3d;
    opacity: 0;
    transform: translate3d(0, 0, -2000px);
    overflow: hidden;
    border-radius: 12px;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-river {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    width: min(1240px, calc(100% - 4rem));
    height: clamp(600px, 85vh, 850px); /* Altura mais flexível */
    margin: 4rem auto;
    overflow: hidden;
    mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
}

.river-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.river-column img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), filter 0.3s ease;
    cursor: zoom-in;
}

.river-column img:hover {
    transform: scale(1.04);
    filter: brightness(1.1);
}

.river-column--up {
    animation: riverUp 30s linear infinite;
}

.river-column--down {
    animation: riverDown 30s linear infinite;
}

.river-column:hover {
    animation-play-state: paused;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 1rem;
}

.service-card,
.process-list article,
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(14px);
}

.service-card {
    display: flex;
    min-height: 540px;
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 40px 100px rgba(7, 60, 255, 0.08);
}

.service-card:hover,
.process-list article:hover {
    transform: translateY(-9px);
}

.service-card span,
.process-list span {
    color: var(--blue);
    font-family: var(--title);
    font-size: 0.95rem;
}

.service-card h3,
.process-list h3 {
    margin: 1.2rem 0 0.7rem;
    font-size: clamp(1.3rem, 1.6vw, 1.8rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.service-card p,
.process-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.service-card ul {
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    padding: 0.72rem 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.process-list {
    display: grid;
    gap: 0.8rem;
}

.process-list article {
    display: grid;
    grid-template-columns: 70px minmax(180px, 0.28fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1.2rem;
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.process-list h3 {
    margin: 0;
}

.process {
    padding-bottom: 2rem;
}


.feedback-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.feedback-strip img {
    width: 100%;
    aspect-ratio: 3 / 4.5;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact {
    background: var(--ink);
    color: #fff;
    padding: clamp(6rem, 15vw, 12rem) clamp(1.5rem, 5vw, 5rem);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 6rem);
    align-items: center;
    border-radius: 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 30%;
    height: 40%;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact__copy {
    display: grid;
    align-content: center;
    gap: 1.2rem;
}

.contact__copy h2 {
    font-size: clamp(3rem, 6vw, 7.5rem);
    line-height: 0.85;
    letter-spacing: -0.06em;
    color: #fff;
    margin: 1.5rem 0;
    text-transform: uppercase;
    font-family: var(--title);
}

.contact__copy p {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.2rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.contact-list li span {
    color: var(--blue);
    font-size: 1.2rem;
}



.contact-form {
    background: rgba(255, 255, 255, 0.08); /* Pouca coisa mais claro */
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 24px;
    display: grid;
    gap: 1.5rem;
    width: 100%;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.8rem 0;
    border-radius: 0;
    font-size: 1.1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--blue);
    outline: none;
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
    background: var(--blue);
    min-height: 70px;
    font-size: 0.9rem;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    border: 0;
    transition: transform 0.3s, background 0.3s;
}

.contact-form button:hover {
    transform: translateY(-5px);
    background: #fff;
    color: var(--ink);
}

.contact-cta {
    position: absolute;
    right: 3rem;
    bottom: 5rem; /* Movido para a parte inferior direita */
    z-index: 5;
    transform: rotate(-5deg);
}

@media (max-width: 1100px) {
    .contact-cta {
        position: static;
        margin-top: 2.5rem;
        transform: none;
    }
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--blue);
    color: #fff;
    padding: 1.2rem 2rem;
    border-radius: 24px;
    border: 3px solid #fff; /* Estilo Sticker */
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-badge:hover {
    transform: scale(1.05) translateY(-5px);
    background: var(--blue-dark);
}

.cta-badge__icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: grid;
    place-items: center;
}

.cta-badge__icon svg {
    width: 24px;
    height: 24px;
}

.cta-badge__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.cta-badge__text span {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    opacity: 0.8;
}

.cta-badge__text strong {
    font-family: var(--title);
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    background: var(--ink);
    color: #fff;
    padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 5vw, 5rem);
    border-top: 0;
}




.footer h2 {
    font-size: clamp(3rem, 6.5vw, 7.5rem);
    color: #fff;
    margin: 0;
}

.footer h2 em {
    color: var(--blue);
    font-style: normal;
}

.footer span {
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer p,
.footer a:not([data-whatsapp]) {
    margin: 0;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-label {
    color: var(--blue);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.2rem;
}

.blue-text {
    color: var(--blue) !important;
}

.footer__top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap; /* Evita quebra em zoom alto */
}

.footer__title {
    flex: 1;
}

.footer__actions {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
}

.footer__actions > a[data-whatsapp] {
    margin-left: clamp(2rem, 12vw, 15rem);
}

.footer__info {
    display: flex;
    gap: clamp(1rem, 3vw, 3rem);
    align-items: center;
    align-self: center;
    flex-wrap: wrap;
}

.footer__info > div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer__bottom {
    width: 100%;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 1.5rem;
}

.footer-logo {
    height: clamp(200px, 28vw, 400px);
    width: auto;
    border-radius: 48px;
    opacity: 1;
    filter: brightness(1.1);
    transition: all 0.3s ease;
    align-self: center;
}

.footer-logo:hover {
    opacity: 1;
}


.footer__bottom p {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-align: center;
}



.media-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.media-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.media-modal__content {
    width: min(1200px, 100%);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.media-modal video,
.media-modal img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 30px 90px rgba(0,0,0,0.5);
}

.media-modal__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 9001;
    transition: transform 0.2s ease;
}

.media-modal__close:hover {
    transform: scale(1.1) rotate(90deg);
}


.reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.partners {
    width: 100%;
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.partners .section-head {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    margin: 0 auto 4rem auto;
    padding: 0 clamp(1.5rem, 5vw, 5rem);
    text-align: center;
    justify-items: center;
}

.partners .section-head .kicker {
    justify-content: center;
}

.partners .section-head h2 {
    width: 100%;
    max-width: none;
    text-align: center;
}

.partners__track {
    display: flex;
    width: max-content;
    gap: 5rem;
    align-items: center;
    animation: partnersScroll 120s linear infinite; 
}

.partner-logo {
    height: 140px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.partner-logo:hover {
    transform: scale(1.15);
}

.partner-logo img {
    height: 100%;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    border-radius: 24px; 
}

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

@keyframes tickerMove {
    to { transform: translateX(-50%); }
}

@keyframes riverUp {
    to { transform: translateY(-50%); }
}

@keyframes riverDown {
    from { transform: translateY(-50%); }
    to { transform: translateY(0); }
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.96); opacity: 0.72; }
}

.hero-image-container {
    position: absolute;
    right: 5%;
    top: 55%;
    transform: translateY(-50%);
    width: 35vw;
    height: 70vh;
    overflow: hidden;
    z-index: 1;
    display: none; 
    box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}

.hero-foto-main {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 48px; /* Cantos arredondados na própria imagem */
}

.led-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0),
        transparent
    );
    transform: skewX(-25deg);
    animation: ledSweep 4s infinite ease-in-out;
}

@keyframes ledSweep {
    0% { left: -150%; opacity: 0; }
    20% { opacity: 1; }
    50% { left: 150%; opacity: 1; }
    70% { opacity: 0; }
    100% { left: 150%; opacity: 0; }
}

/* Hero v2 Left Content + Right Collage Styles */
.hero-centered-content {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: min(56%, 720px);
    padding: 0.5rem;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.hero-centered-content * {
    pointer-events: auto;
}

.hero-content-wrapper {
    text-align: left;
    display: inline-block;
    max-width: 100%;
}

.hero-title-group {
    position: relative;
    display: block;
    width: fit-content;
}

.hero__eyebrow {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 0.1rem;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.hero-main-logo img {
    height: 120px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
}

.hero {
    background: #000; /* Preto total */
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0; /* Removido espaço branco */
}

.hero-v2-eyebrow {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 0.4em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    margin-top: 0.8rem;
}

.hero-v2-title {
    font-family: var(--title);
    font-size: clamp(3.2rem, 6.2vw, 5.8rem);
    line-height: 0.85;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #fff;
    font-weight: 500;
}

.hero-v2-title em {
    color: var(--blue);
    font-style: normal;
}

.hero-v2-title span {
    display: block;
    font-size: 0.22em; /* Muito menor, como no logo */
    font-weight: 300;
    letter-spacing: 0.55em; /* Espaçamento largo característico */
    margin-top: 0.5rem;
    opacity: 0.9;
    font-family: var(--body);
}

.hero-marketing-motion {
    display: flex;
    flex-direction: column;
    margin: 0 0 0.8rem;
    font-family: var(--title);
    font-size: clamp(3.2rem, 6.2vw, 5.8rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 0.82;
    overflow: hidden;
}

.hero-marketing-motion span {
    display: block;
    width: max-content;
    animation: hero-marketing-enter 3.8s cubic-bezier(.22, .61, .36, 1) infinite alternate;
}

.hero-marketing-motion span:first-child {
    color: #fff;
}

.hero-marketing-motion span:last-child {
    color: var(--blue);
    animation-delay: 0.28s;
}

@keyframes hero-marketing-enter {
    0%, 14% { transform: translateX(-105%); opacity: 0; }
    36%, 100% { transform: translateX(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-marketing-motion span { animation: none; }
}

@media (max-width: 1024px) {
    .hero-marketing-motion {
        font-size: clamp(2.2rem, 10vw, 3.8rem);
    }
}

@media (max-width: 480px) {
    .hero-marketing-motion {
        font-size: clamp(1.9rem, 11.5vw, 2.85rem);
        letter-spacing: -0.025em;
    }
}

.hero-v2-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    margin-bottom: 3.5rem;
    max-width: 500px;
    margin-left: 0;
    margin-right: 0;
}

.hero-v2-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    z-index: 101;
}

.hero-collage {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-collage-item {
    position: absolute;
    z-index: 1;
    animation: heroFloat 10s ease-in-out infinite;
}

.hero-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: clamp(12px, 2vw, 28px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), filter 0.4s ease;
    will-change: transform;
}

.hero-collage-item:hover {
    z-index: 50 !important;
}

.hero-collage-item:hover img {
    filter: brightness(1.1) contrast(1.05);
}

.hero-collage-item.pos-1 { top: 17%; right: 34%; width: clamp(130px, 13vw, 210px); aspect-ratio: 220/300; animation-delay: 0s; }
.hero-collage-item.pos-2 { top: 11%; right: 7%; width: clamp(160px, 17vw, 260px); aspect-ratio: 260/340; animation-delay: -2s; }
.hero-collage-item.pos-3 { bottom: 8%; right: 28%; width: clamp(180px, 20vw, 310px); aspect-ratio: 320/400; animation-delay: -4s; }
.hero-collage-item.pos-4 { bottom: 9%; right: 5%; width: clamp(150px, 15vw, 235px); aspect-ratio: 240/320; animation-delay: -6s; }
.hero-collage-item.pos-5 { top: 35%; right: 43%; width: clamp(110px, 11vw, 175px); aspect-ratio: 180/240; animation-delay: -1s; }
.hero-collage-item.pos-6 { top: 8%; left: 32%; width: clamp(100px, 10vw, 140px); aspect-ratio: 140/180; animation-delay: -3.5s; }
.hero-collage-item.pos-7 { bottom: -5%; right: 32%; width: clamp(140px, 15vw, 240px); aspect-ratio: 240/180; animation-delay: -7s; }
.hero-collage-item.pos-8 { top: 43%; right: 15%; width: clamp(120px, 11vw, 160px); aspect-ratio: 160/220; animation-delay: -5s; }
.hero-collage-item.pos-9 { top: 27%; right: 30%; width: clamp(80px, 8vw, 120px); aspect-ratio: 120/160; animation-delay: -8s; z-index: 1; }
.hero-collage-item.pos-10 { bottom: 32%; right: 41%; width: clamp(90px, 9vw, 130px); aspect-ratio: 130/170; animation-delay: -9s; z-index: 1; }

/* Ocultar itens extras no Desktop para manter visual original */
.hero-collage-item.pos-6,
.hero-collage-item.pos-7,
.hero-collage-item.pos-9,
.hero-collage-item.pos-11,
.hero-collage-item.pos-12,
.hero-collage-item.pos-13,
.hero-collage-item.pos-14,
.hero-collage-item.pos-15 {
    display: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-25px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

@media (max-width: 1024px) {
    .top-header__nav,
    .top-header__actions,
    .top-header__cta {
        display: none;
    }

    .menu-button {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        min-height: 34px;
        background: transparent;
        border: 0;
        border-radius: 0;
        color: var(--ink);
        font-weight: 900;
        font-size: 0.7rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        cursor: pointer;
        padding: 0.25rem 0;
        position: relative;
        z-index: 1200;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: color 0.3s;
    }

    .menu-button::before {
        content: none !important;
    }

    .menu-button {
        font-size: 0.7rem;
    }

    .menu-button[aria-expanded="true"] {
        color: var(--ink);
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    .menu-button[aria-expanded="true"]::before {
        content: 'FECHAR';
    }

    .menu-icon {
        width: 24px;
        height: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border-radius: 0;
        background: transparent;
    }

    .menu-icon span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--ink); /* Preto em vez de azul */
        border-radius: 2px;
        transition: 0.3s;
    }

    .menu-button[aria-expanded="true"] .menu-icon span {
        background: var(--ink);
    }

    .menu-button[aria-expanded="true"] .menu-icon {
        background: transparent;
    }

    .menu-button[aria-expanded="true"] .menu-icon span:nth-child(1),
    .menu-button[aria-expanded="true"] .menu-icon span:nth-child(4) {
        opacity: 0;
        transform: scaleX(0);
    }

    .menu-button[aria-expanded="true"] .menu-icon span:nth-child(2) {
        transform: translateY(3px) rotate(45deg);
    }

    .menu-button[aria-expanded="true"] .menu-icon span:nth-child(3) {
        transform: translateY(-3px) rotate(-45deg);
    }
}

.head-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.clock-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.clock {
    width: clamp(200px, 25vw, 300px);
    aspect-ratio: 1;
    border: 5px solid var(--ink);
    border-radius: 50%;
    position: relative;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.clock__marks {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-conic-gradient(
        from -0.5deg,
        var(--ink) 0deg 0.7deg,
        transparent 0.7deg 30deg
    );
    -webkit-mask: radial-gradient(farthest-side, transparent 93%, white 93.1%);
    mask: radial-gradient(farthest-side, transparent 93%, white 93.1%);
    border-radius: 50%;
}

.clock__hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    background: var(--blue);
    transform-origin: bottom center;
    border-radius: 20px;
    z-index: 2;
}

.clock__hand--hour {
    width: 8px;
    height: 30%;
    animation: rotateHand 12s linear infinite;
}

.clock__hand--minute {
    width: 5px;
    height: 42%;
    background: var(--ink);
    animation: rotateHand 2s linear infinite;
}

.clock::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    background: var(--blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border: 3px solid #fff;
}

@keyframes rotateHand {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.clock-cta__text {
    font-family: var(--title) !important;
    font-size: 2rem !important;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1 !important;
    color: var(--blue) !important;
    margin: 0 !important;
    max-width: 400px;
}

@media (max-width: 1024px) {
    .hero-collage-item {
        transform: scale(0.6) !important;
    }
}

@media (max-width: 820px) {
    :root {
        --radius: 22px;
    }

    .top-header {
        padding: 0 1rem;
    }

    .top-header__logo {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .top-header__inner {
        height: 62px;
    }

    .top-header:not(.is-scrolled) .menu-button {
        color: #fff !important;
    }

    .top-header:not(.is-scrolled) .menu-icon span {
        background: #fff !important;
    }



    .top-header__right {
        gap: 0.75rem;
    }

    .section {
        padding: clamp(1.5rem, 8vw, 3rem) 1.1rem; /* Reduzido padding vertical no mobile */
    }

    .hero {
        min-height: 100vh;
        padding-top: 6rem;
        padding-bottom: 0;
        margin-bottom: 0; /* Removido espaço branco */
        background: #000; /* Preto absoluto no mobile também */
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .hero-v2-title, 
    .hero-v2-subtitle {
        color: #fff !important; /* Voltando para o branco */
        position: relative;
        z-index: 10;
    }

    .hero-v2-eyebrow {
        color: var(--blue) !important;
        position: relative;
        z-index: 10;
    }

    .hero__eyebrow {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        color: var(--blue) !important;
        white-space: normal !important;
        line-height: 1 !important;
        font-size: 0.7rem !important;
    }
    
    .hero-v2-eyebrow {
        margin-top: 0.2rem !important;
        margin-bottom: 0.8rem !important;
    }

    .hero__eyebrow em {
        font-style: normal;
    }

    .hero-v2-title em {
        color: var(--blue) !important;
    }

    .hero-collage {
        display: block !important;
        opacity: 0.6;
        z-index: 0;
        pointer-events: none;
    }

    /* Exibir todos os itens no Mobile como solicitado */
    .hero-collage-item {
        display: block !important;
        transform: scale(0.5) !important;
    }

    /* Reposicionamento para Mobile */
    .hero-collage-item.pos-1 { top: 10%; right: -10%; }
    .hero-collage-item.pos-2 { top: 25%; right: 5%; }
    .hero-collage-item.pos-3 { bottom: 15%; left: -5%; }
    .hero-collage-item.pos-4 { bottom: 20%; right: -10%; }
    .hero-collage-item.pos-5 { top: 5%; left: 5%; }
    .hero-collage-item.pos-6 { top: 15%; left: -10%; }
    .hero-collage-item.pos-7 { bottom: 5%; left: 15%; }
    .hero-collage-item.pos-8 { bottom: 5%; right: 5%; }
    .hero-collage-item.pos-9 { top: 50%; left: -8%; }
    .hero-collage-item.pos-10 { top: 45%; right: -5%; }
    .hero-collage-item.pos-11 { top: 35%; left: 10%; }
    .hero-collage-item.pos-12 { bottom: 25%; right: 15%; }
    .hero-collage-item.pos-13 { top: -5%; right: 35%; }
    .hero-collage-item.pos-14 { bottom: -2%; left: 40%; }
    .hero-collage-item.pos-15 { top: 55%; right: -12%; }

    .top-header__nav,
    .top-header__actions,
    .top-header__cta {
        display: none;
    }

    .top-header__logo img {
        height: 36px;
    }

    .hero-centered-content {
        z-index: 200 !important;
        max-width: 100%;
    }

    .hero-content-wrapper {
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-title-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }



    .hero-v2-title {
        font-size: clamp(2.2rem, 10vw, 3.8rem);
        text-align: left;
        margin-top: 0.2rem !important;
    }

    .hero-v2-subtitle {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        font-size: 0.95rem;
    }

    .hero-v2-actions {
        justify-content: center !important;
        width: 100%;
    }

    .hero-v2-actions .pill-link {
        width: min(100%, 320px);
        min-height: 48px;
        padding: 0 1rem;
        text-align: center;
    }

    .section-head,
    .partners .section-head {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.8rem; /* Gap reduzido para "grudar" kicker e título */
        text-align: left;
    }

    .section-head .kicker,
    .kicker {
        justify-content: flex-start;
    }

    .section-head h2,
    .split-copy h2,
    .contact__copy h2,
    .footer h2 {
        font-size: clamp(2rem, 9.2vw, 3.6rem);
        line-height: 0.98;
        letter-spacing: -0.035em;
    }

    .head-side {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
    }

    .small-logo-about,
    .contact-logo-small {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    .services .section-head {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }

    .services .head-side {
        padding-left: 0;
        border-left: 0;
        align-items: flex-start;
        text-align: left;
    }

    .services .section-head h2 {
        font-size: clamp(2.2rem, 10vw, 4.2rem);
        line-height: 1.1;
        text-align: left;
    }
    
    .clock-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0;
        gap: 1.2rem;
        width: 100%;
    }

    .work-grid,
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    .project-card,
    .project-card--wide,
    .project-card--tall {
        grid-column: span 1 !important;
        grid-row: auto !important;
        min-height: 300px !important;
    }

    .project-card h3 {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
    }

    .about {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .split-copy {
        position: relative;
        top: auto;
        padding-right: 0;
        text-align: left;
        justify-items: start;
    }

    .photo-collage {
        max-width: 100%;
        aspect-ratio: 1 / 1;
    }

    .team-3d {
        height: auto;
        padding: 4rem 1rem;
    }

    .team-sticky {
        position: relative;
        top: auto;
        height: auto;
        display: grid;
        gap: 1.5rem;
    }

    .team-scene {
        position: relative;
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .team-card {
        position: relative;
        width: 100%;
        transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    }

    .image-river {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        height: 500px;
        gap: 1rem;
        margin: 3rem 0;
        overflow: hidden;
    }

    .river-column:nth-child(n+3) {
        display: none;
    }

    .service-card {
        min-height: auto;
    }

    .process-list article {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 4rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form button {
        width: 100%;
    }

    .feedback-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partners {
        padding: 4rem 0;
    }

    .partners__track {
        gap: 2rem;
    }

    .partner-logo {
        height: 92px;
    }

    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding: 3rem 1.2rem;
    }

    .footer__top, 
    .footer__actions {
        display: contents;
    }

    .footer__title {
        order: 1;
        text-align: center;
        width: 100%;
    }

    .footer h2 {
        font-size: clamp(2.2rem, 9vw, 3.5rem);
    }

    .footer a[data-whatsapp] {
        order: 2;
        width: 100% !important;
        min-height: 60px;
        padding: 0 2rem;
        font-size: 0.75rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
    }

    .footer-logo {
        order: 3;
        height: clamp(180px, 40vw, 300px);
        border-radius: 48px;
        margin: 0 auto;
    }

    .footer__info {
        order: 4;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        width: 100%;
    }

    .footer__info > div {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .footer__bottom {
        order: 5;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .footer__bottom p {
        font-size: 0.55rem;
        letter-spacing: 0.03em;
    }
}

@media (max-width: 480px) {
    .section {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .mobile-menu {
        gap: 1.35rem;
        padding: 5rem 1.25rem 2rem;
    }

    .mobile-menu a {
        font-size: clamp(1.35rem, 8vw, 2rem);
        text-align: center;
    }

    .hero-centered-content {
        padding: 0;
    }

    .hero-v2-title {
        font-size: clamp(1.9rem, 11.5vw, 2.85rem);
        letter-spacing: -0.025em;
    }

    .section-head h2,
    .split-copy h2,
    .contact__copy h2,
    .footer h2 {
        font-size: clamp(1.75rem, 7.8vw, 2.85rem);
        line-height: 1;
        letter-spacing: -0.025em;
    }

    .hero-v2-eyebrow,
    .hero__eyebrow {
        font-size: 0.66rem;
        letter-spacing: 0.2em;
    }

    .hero-v2-actions {
        gap: 0.75rem;
    }

    .ticker__track {
        font-size: clamp(1.65rem, 12vw, 3rem);
    }

    .team-scene {
        grid-template-columns: 1fr;
    }

    .metrics strong {
        font-size: 3rem;
    }

    .project-card,
    .project-card--wide,
    .project-card--tall {
        min-height: 260px !important;
    }

    .image-river {
        height: 420px;
        gap: 0.7rem;
    }

    .river-column {
        gap: 0.7rem;
    }

    .river-column img,
    .feedback-strip img,
    .project-card,
    .service-card,
    .process-list article,
    .contact-form {
        border-radius: 18px;
    }

    .contact-form {
        padding: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        min-height: 56px;
        border-radius: 14px;
    }

    .media-modal {
        padding: 1rem;
    }

    .media-modal__close {
        top: 1rem;
        right: 1rem;
        width: 46px;
        height: 46px;
        font-size: 1.8rem;
    }

    .footer {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }
}

/* --- SVG BUILDING ANIMATION --- */
.build-pillar {
    transform-origin: bottom;
    animation: growUp 2s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
    transform: scaleY(0);
}
.p2 { animation-delay: 0.2s; }
.p3 { animation-delay: 0.4s; }

.build-floor {
    transform: scaleX(0);
    transform-origin: left;
    animation: extendRight 1.5s ease-out forwards;
}
.f1 { animation-delay: 0.8s; }
.f2 { animation-delay: 1.1s; }
.f3 { animation-delay: 1.4s; }
.f4 { animation-delay: 1.7s; }

.build-window {
    opacity: 0;
    animation: fadeInWindow 0.5s ease-in forwards;
}
.w1 { animation-delay: 2s; }
.w2 { animation-delay: 2.1s; }
.w3 { animation-delay: 2.2s; }
.w4 { animation-delay: 2.3s; }
.w5 { animation-delay: 2.4s; }
.w6 { animation-delay: 2.6s; }
.w7 { animation-delay: 2.7s; }
.w8 { animation-delay: 2.8s; }

.build-crane {
    animation: craneMove 15s linear infinite;
}

@keyframes growUp {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes extendRight {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes fadeInWindow {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes craneMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-40px); }
}

/* --- FIX PROJECT CARDS IMAGES --- */
.project-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), filter 0.35s ease;
}

.project-card:hover img {
    transform: scale(1.12);
    filter: saturate(1.05) brightness(1.05);
}

/* --- DEV TECH SECTION BENTO GRID --- */
.dev-tech {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

/* Adicionando o efeito de grid sutil e glow azul no fundo da seção */
.dev-tech::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(17, 17, 15, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 15, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

.dev-tech::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: clamp(300px, 40vw, 600px);
    height: clamp(300px, 40vw, 600px);
    background: radial-gradient(circle, rgba(0, 82, 204, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.services-brands {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 4.5vw, 4rem);
    padding: 0;
    margin-top: clamp(2.5rem, 5vw, 4rem);
    position: relative;
    z-index: 2;
}

.services-brands__header-group {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    border-bottom: 1px solid rgba(0, 82, 204, 0.08);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.services-brands__header-group .services-brands__title {
    margin: 0;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-family: var(--title);
    font-weight: 600;
    text-transform: uppercase;
}

.services-brands__header-group .services-brands__title em {
    color: var(--blue);
    font-style: normal;
}

.services-brands__header-group .services-brands__lead {
    margin: 0;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.6;
    color: var(--muted);
    font-weight: 500;
}

.services-brands__bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.services-brands__card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 82, 204, 0.05);
    border-radius: 24px;
    padding: 2.5rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.01);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-brands__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(0, 82, 204, 0.09), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.services-brands__card:hover::before {
    opacity: 1;
}

/* Modificadores de Coluna */
.services-brands__card--span-2 {
    grid-column: span 2;
}

.services-brands__card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 82, 204, 0.2);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.06);
}

.services-brands__card-num {
    font-family: var(--title);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 82, 204, 0.04);
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.services-brands__card:hover .services-brands__card-num {
    color: rgba(0, 82, 204, 0.08);
    transform: scale(1.05) translateY(2px);
}

.services-brands__card-title {
    font-family: var(--title);
    font-size: clamp(1.25rem, 1.6vw, 1.6rem);
    line-height: 1.25;
    color: var(--ink);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.02em;
    font-weight: 900;
    z-index: 1;
}

.services-brands__card-text {
    margin: 0;
    font-family: var(--body);
    font-size: clamp(0.92rem, 1.02vw, 1.02rem);
    line-height: 1.6;
    color: var(--muted);
    font-weight: 500;
    z-index: 1;
}

/* Card CTA Especial */
.services-brands__card--cta {
    background: linear-gradient(135deg, var(--blue) 0%, #003cb3 100%);
    border: none;
    box-shadow: 0 15px 35px rgba(0, 82, 204, 0.15);
    color: #fff;
    justify-content: space-between;
}

.services-brands__card--cta:hover {
    background: linear-gradient(135deg, #0056e0 0%, #0044cc 100%);
    box-shadow: 0 20px 45px rgba(0, 82, 204, 0.25);
    border-color: transparent;
}

.services-brands__card--cta .services-brands__card-num--white {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    position: static;
    font-weight: 800;
    text-transform: uppercase;
}

.services-brands__card--cta .services-brands__card-title--white {
    color: #fff;
    font-size: clamp(1.3rem, 1.7vw, 1.75rem);
}

.services-brands__card--cta .services-brands__card-text--white {
    color: rgba(255, 255, 255, 0.8);
}

.services-brands__cta-btn {
    align-self: flex-start;
    padding: 0.8rem 1.8rem;
    background: #fff;
    color: var(--blue);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 1;
}

.services-brands__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: #f5f9ff;
}

@media (max-width: 1024px) {
    .services-brands__header-group {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        align-items: start;
    }
    .services-brands__bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem;
    }
    .services-brands__card--span-2 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services-brands__bento {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .services-brands__card--span-2 {
        grid-column: span 1;
    }
    .services-brands__card {
        padding: 2rem 1.8rem;
    }
    .services-brands__card-num {
        font-size: 3.5rem;
    }
}



@media (max-width: 1024px) {

    .about,
    .services .section-head {
        grid-template-columns: 1fr !important;
        text-align: left;
    }

    .photo-collage {
        margin: 0 !important;
    }

    .head-side {
        margin: 0 !important;
        text-align: left !important;
        align-items: flex-start !important;
        justify-self: start !important;
    }

    .small-logo-about {
        margin: 0 !important;
    }

    .split-copy {
        padding-right: 0 !important;
        text-align: left;
    }
}

/* --- MONTHLY PLANNING PHILOSOPHY SECTION --- */
.monthly-planning {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    background: var(--paper-soft);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.monthly-planning__container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.monthly-planning__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(2rem, 5vw, 6rem);
    align-items: center;
}

.monthly-planning__copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.monthly-planning__badge {
    background: var(--blue);
    color: #fff;
    font-family: var(--body);
    font-size: clamp(0.68rem, 0.9vw, 0.82rem);
    font-weight: 800;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.15);
}

.monthly-planning__badge .text-blue {
    color: inherit !important;
}

.monthly-planning__lead .text-blue,
.monthly-planning__title .text-blue {
    color: var(--blue) !important;
}

.monthly-planning__title {
    font-family: var(--title);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin: 0;
    text-transform: uppercase;
}

.monthly-planning__lead {
    font-family: var(--body);
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    line-height: 1.6;
    color: var(--ink);
    font-weight: 600;
    margin: 0;
}

.monthly-planning__text {
    font-family: var(--body);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.6;
    color: var(--muted);
    font-weight: 500;
    margin: 0;
}

.monthly-planning__cta-box {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 82, 204, 0.06);
    color: var(--blue);
    border: 1px solid rgba(0, 82, 204, 0.15);
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    font-family: var(--body);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-weight: 700;
}

.monthly-planning__cta-box span {
    font-size: 1.1rem;
}

/* Simulator Card Styles */
.monthly-planning__simulator {
    width: 100%;
    position: relative;
    z-index: 2;
}

.simulator-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 82, 204, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
}

.simulator-card__header {
    background: rgba(17, 17, 15, 0.02);
    border-bottom: 1px solid var(--line);
    padding: 1.1rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.simulator-card__title {
    font-family: var(--body);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.simulator-card__body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.simulator-step {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.simulator-step__label {
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.simulator-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.simulator-btn {
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 0.55rem 1rem;
    font-family: var(--body);
    font-size: clamp(0.8rem, 1.1vw, 0.92rem);
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.simulator-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.simulator-btn:hover .simulator-icon {
    transform: scale(1.15);
}

.simulator-btn:hover {
    transform: translateY(-2px);
    border-color: var(--blue);
    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.05);
}

.simulator-btn.is-active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 6px 15px rgba(0, 82, 204, 0.2);
}

/* Result Container */
.simulator-result {
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.simulator-result__header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: #27c93f;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    border-radius: 50%;
    background-color: inherit;
    animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.8); opacity: 0; }
}

.simulator-result__header strong {
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 0.08em;
}

.simulator-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.timeline-week {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    border-left: 3px solid var(--blue);
    padding-left: 0.9rem;
    transition: all 0.3s ease;
}

.week-label {
    font-family: var(--title);
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.week-desc {
    margin: 0;
    font-family: var(--body);
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    line-height: 1.4;
    color: var(--ink);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .monthly-planning__grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .simulator-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.text-blue {
    color: var(--blue) !important;
}

/* --- MINI MOCKUPS & ELEMENTOS INOVADORES DA BENTO GRID --- */

/* Efeito Spotlight Seguidor de Mouse */
.services-brands__card {
    --x: 0px;
    --y: 0px;
}

/* Card 1: Feed / Gráfico de Redes Sociais */
.services-brands__card--span-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Card 1: Mockup de Celular (Gestão de Redes Sociais) */
.services-brands__card-visual-phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.phone-mockup {
    width: 140px;
    height: 240px;
    background: #111;
    border-radius: 28px;
    padding: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    transform: rotate(3deg) translateY(5px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-speaker {
    width: 35px;
    height: 10px;
    background: #111;
    border-radius: 8px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 14px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.phone-avatar {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, #00245a 100%);
}

.phone-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-username {
    height: 5px;
    width: 35px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
}

.phone-location {
    height: 3px;
    width: 20px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 1px;
}

.phone-post-image {
    flex-grow: 1;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.03) 0%, rgba(0, 82, 204, 0.08) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.phone-chart-svg {
    width: 100%;
    height: 90px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.phone-chart-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPhoneChart 2.5s ease forwards infinite;
}

@keyframes drawPhoneChart {
    to {
        stroke-dashoffset: 0;
    }
}

.phone-chart-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(52, 199, 89, 0.12);
    color: #34c759;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 20px;
}

.phone-actions {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    background: #fff;
}

.phone-action-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
}

.phone-action-icon--active {
    background: var(--blue);
}

.phone-action-save {
    margin-left: auto;
    width: 6px;
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 1px;
}

/* Efeito Hover do Card no Celular */
.services-brands__card:hover .phone-mockup {
    transform: rotate(0deg) scale(1.05) translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 82, 204, 0.08);
    border-color: rgba(0, 82, 204, 0.15);
}

/* Card 2: Tags Flutuantes */
.services-brands__card-visual-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.visual-tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    background: rgba(0, 82, 204, 0.04);
    border: 1px solid rgba(0, 82, 204, 0.06);
    border-radius: 99px;
    color: var(--blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-brands__card:hover .visual-tag {
    background: rgba(0, 82, 204, 0.08);
    transform: translateY(-2px);
}

/* Card 3: Wave de Áudio / Play */
.services-brands__card-visual-audio {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 82, 204, 0.04);
}

.audio-play {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    display: grid;
    place-items: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-brands__card:hover .audio-play {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.2);
}

.audio-waves {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
    flex-grow: 1;
}

.audio-bar {
    width: 3px;
    height: 100%;
    background: rgba(0, 82, 204, 0.15);
    border-radius: 3px;
    transform-origin: bottom;
    animation: waveAnimation 1.2s ease-in-out infinite alternate;
}

.audio-bar:nth-child(2) { height: 60%; animation-delay: 0.15s; }
.audio-bar:nth-child(3) { height: 85%; animation-delay: 0.3s; }
.audio-bar:nth-child(4) { height: 40%; animation-delay: 0.45s; }
.audio-bar:nth-child(5) { height: 70%; animation-delay: 0.6s; }
.audio-bar:nth-child(6) { height: 95%; animation-delay: 0.75s; }
.audio-bar:nth-child(7) { height: 50%; animation-delay: 0.9s; }

.services-brands__card:hover .audio-bar {
    background: var(--blue);
    animation-play-state: running;
}

@keyframes waveAnimation {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}

/* Card 4: Foco de Câmera (REC) */
.services-brands__card-visual-rec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px dashed rgba(0, 0, 0, 0.06);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
}

.rec-dot {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #ff3b30;
}

.rec-dot::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ff3b30;
    border-radius: 50%;
    animation: pulseRed 1s infinite alternate;
}

@keyframes pulseRed {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Card 5: Métrica de Tráfego */
.services-brands__card-visual-roi {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 82, 204, 0.04);
}

.roi-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.05em;
}

.roi-value-group {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.roi-number {
    font-family: var(--title);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}

.roi-trend {
    font-size: 0.75rem;
    font-weight: 700;
    color: #34c759;
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Card 6: Navegador Mockup */
.services-brands__card-visual-web {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    height: 140px;
    display: flex;
    flex-direction: column;
    transform: translateY(10px) rotate(-1deg);
    transition: all 0.5s ease;
}

.services-brands__card:hover .services-brands__card-visual-web {
    transform: translateY(0px) rotate(0deg) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 82, 204, 0.05);
}

.web-bar {
    height: 24px;
    background: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    gap: 4px;
}

.web-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
}

.web-address {
    height: 12px;
    width: 100px;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto;
}

.web-body {
    padding: 0.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.web-hero {
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.03) 0%, rgba(0, 82, 204, 0.08) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.web-hero-line {
    height: 6px;
    width: 40px;
    background: rgba(0, 82, 204, 0.2);
    border-radius: 3px;
}

.web-grid-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}

.web-grid-item {
    height: 30px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* --- AJUSTES DE COLUNA PARA CARD 6 NO DESKTOP --- */
.services-brands__card--span-2:last-of-type {
    grid-template-columns: 1.3fr 1fr;
}

@media (max-width: 768px) {
    .services-brands__card--span-2 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    .services-brands__card-visual-web {
        height: 110px;
    }
    .services-brands__card-visual-event-triple {
        height: 130px;
    }
    .event-img-wrapper {
        width: 65px;
        height: 105px;
    }
}

/* Card 4: Três imagens de Eventos em leque com rotação */
.services-brands__card-visual-event-triple {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    height: 220px;
    position: relative;
    width: 100%;
}

.event-img-wrapper {
    width: 88px;
    height: 148px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.event-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Rotações em leque e z-index */
.event-img-wrapper--left {
    transform: rotate(-10deg) translateX(12px) translateY(5px);
    z-index: 1;
}

.event-img-wrapper--center {
    transform: rotate(0deg) translateY(-5px);
    z-index: 3;
}

.event-img-wrapper--right {
    transform: rotate(10deg) translateX(-12px) translateY(5px);
    z-index: 2;
}

/* Hover do Card afeta as imagens (abertura do leque e elevação) */
.services-brands__card:hover .event-img-wrapper--left {
    transform: rotate(-5deg) translateX(-8px) translateY(0) scale(1.03);
    z-index: 2;
    box-shadow: 0 12px 25px rgba(0, 82, 204, 0.08);
}

.services-brands__card:hover .event-img-wrapper--center {
    transform: rotate(0deg) translateY(-8px) scale(1.05);
    z-index: 4;
    box-shadow: 0 15px 30px rgba(0, 82, 204, 0.1);
}

.services-brands__card:hover .event-img-wrapper--right {
    transform: rotate(5deg) translateX(8px) translateY(0) scale(1.03);
    z-index: 3;
    box-shadow: 0 12px 25px rgba(0, 82, 204, 0.08);
}

/* Card 6: Prévia do Site AgroPets (Mockup de Navegador) */
.services-brands__card-visual-agropets {
    margin-top: auto;
    padding-top: 0.5rem;
    width: 100%;
}

.agropets-browser {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(8px) rotate(1deg);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.agropets-browser-bar {
    height: 20px;
    background: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    gap: 4px;
}

.agropets-browser-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
}

.agropets-browser-dot:nth-child(1) { background: #ff5f56; }
.agropets-browser-dot:nth-child(2) { background: #ffbd2e; }
.agropets-browser-dot:nth-child(3) { background: #27c93f; }

.agropets-browser-content {
    height: 95px;
    overflow: hidden;
    position: relative;
    background: #fdfdfd;
}

.agropets-browser-content img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(0);
    transition: transform 2.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Efeito de Hover */
.services-brands__card:hover .agropets-browser {
    transform: translateY(0) rotate(0deg) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 82, 204, 0.06);
    border-color: rgba(0, 82, 204, 0.15);
}

.services-brands__card:hover .agropets-browser-content img {
    transform: translateY(-25%);
}

/* Card 3: Câmera SVG no Fundo */
.services-brands__card-bg-camera {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 130px;
    height: 130px;
    opacity: 0.03; /* Extremamente discreto para não brigar com o texto */
    pointer-events: none;
    transform: rotate(-12deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Efeito de hover no card afeta a câmera */
.services-brands__card:hover .services-brands__card-bg-camera {
    transform: rotate(0deg) scale(1.08);
    opacity: 0.06;
}

/* Card 5: Site SVG no Fundo */
.services-brands__card-bg-sites {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 130px;
    height: 130px;
    opacity: 0.03; /* Extremamente discreto para não brigar com o texto */
    pointer-events: none;
    transform: rotate(10deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Efeito de hover no card afeta o SVG de sites */
.services-brands__card:hover .services-brands__card-bg-sites {
    transform: rotate(0deg) scale(1.08);
    opacity: 0.06;
}

/* Card 2: Lâmpada SVG no Fundo */
.services-brands__card-bg-ideia {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 130px;
    height: 130px;
    opacity: 0.03; /* Extremamente discreto para não brigar com o texto */
    pointer-events: none;
    transform: rotate(-8deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Efeito de hover no card afeta o SVG de ideia */
.services-brands__card:hover .services-brands__card-bg-ideia {
    transform: rotate(0deg) scale(1.08);
    opacity: 0.06;
}
