/* ============================================
   MARKETING CLINIC — WEBSITE
   ============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple:       #6E3D9C;
    --purple-dark:  #3D1F6E;
    --purple-deep:  #1A0A2E;
    --yellow:       #F9B931;
    --yellow-light: #FDD87A;
    --white:        #FFFFFF;
    --off-white:    #F8F5FF;
    --gray:         #F2F2F2;
    --text:         #1A0A2E;
    --text-muted:   #666;

    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --max-w: 1200px;
}

html { scroll-behavior: auto; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    cursor: none;
}

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

a { text-decoration: none; cursor: none; }

/* ===== CUSTOM CURSOR ===== */
.cursor {
    width: 10px; height: 10px;
    background: var(--yellow);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s;
    mix-blend-mode: difference;
}
.cursor-follower {
    width: 36px; height: 36px;
    border: 2px solid rgba(249,185,49,.5);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}
.cursor.is-hovering { width: 18px; height: 18px; background: var(--purple); }
.cursor-follower.is-hovering { width: 55px; height: 55px; border-color: var(--purple); opacity: .4; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 900;
    line-height: 1.1;
}
.section-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: .75rem;
}
.section-tag--light { color: var(--yellow); }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.25rem; }
.section-title--white { color: var(--white); }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; line-height: 1.7; }
.section-sub--light { color: rgba(255,255,255,.65); }
.text-yellow { color: var(--yellow); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.9rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .02em;
    border: 2px solid transparent;
    cursor: none;
    transition: all .35s var(--ease);
    white-space: nowrap;
}
.btn--yellow { background: var(--yellow); color: var(--purple-dark); border-color: var(--yellow); }
.btn--yellow:hover { background: transparent; color: var(--yellow); }
.btn--purple { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn--purple:hover { background: transparent; color: var(--purple); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: var(--white); color: var(--purple-dark); border-color: var(--white); }
.btn--outline-purple { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn--outline-purple:hover { background: var(--purple); color: var(--white); }
.btn--full { width: 100%; justify-content: center; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,.15); }

/* ===== CONTAINER ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ===== FLOATING ANIMATIONS ===== */
.floating      { animation: floatA 4s ease-in-out infinite; }
.floating-slow { animation: floatA 6s ease-in-out infinite; }
.floating-fast { animation: floatA 3s ease-in-out infinite; }

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all .4s ease;
}
.nav.is-scrolled {
    background: rgba(26,10,46,.95);
    backdrop-filter: blur(20px);
    padding: .875rem 2.5rem;
    box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.nav__logo img { height: 44px; }
.nav__links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    margin-left: auto;
}
.nav__links a {
    color: rgba(255,255,255,.85);
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .04em;
    position: relative;
    transition: color .3s;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--yellow);
    transition: width .3s;
}
.nav__links a:hover { color: var(--yellow); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 1rem; }
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: none;
    margin-left: auto;
    padding: 4px;
}
.nav__burger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .35s;
    transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu */
.menu-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
    opacity: 0; pointer-events: none;
    transition: opacity .4s;
}
.menu-overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 85vw); height: 100vh;
    background: var(--purple-deep);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 6rem 2.5rem 3rem;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.77,0,.175,1);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none; border: none;
    color: var(--white); font-size: 1.5rem;
    cursor: none;
}
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu ul a {
    display: block;
    padding: 1.1rem 0;
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.5rem;
    transition: color .3s, padding-left .3s;
}
.mobile-menu ul a:hover { color: var(--yellow); padding-left: .5rem; }
.mobile-menu__footer {
    margin-top: auto;
    color: rgba(255,255,255,.45);
    font-size: .85rem;
    line-height: 1.8;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--purple-deep);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 15% 50%, rgba(110,61,156,.45) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 85% 20%, rgba(249,185,49,.08) 0%, transparent 60%),
        radial-gradient(ellipse 30% 40% at 75% 85%, rgba(110,61,156,.2) 0%, transparent 60%);
}
.hero__content {
    position: relative; z-index: 2;
    width: 100%; max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    min-height: 100vh;
}
.hero__eyebrow {
    color: var(--yellow);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
}
.hero__title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
}
.hero__line { display: block; overflow: hidden; }
.hero__line span { display: block; transform: translateY(110%); }
.hero__line--accent span { color: var(--yellow); font-style: italic; }
.hero__sub {
    color: rgba(255,255,255,.65);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    opacity: 0; transform: translateY(20px);
}
.hero__btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
}

/* Hero visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    opacity: 0; transform: translateX(50px);
}
.hero__img-wrap {
    position: relative;
    width: 100%;
    max-width: 460px;
}
.hero__photo {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: top center;
    border-radius: 60% 40% 55% 45% / 40% 45% 55% 60%;
    border: 3px solid rgba(249,185,49,.25);
    position: relative; z-index: 1;
}
.hero__img-deco {
    position: absolute;
    inset: -12px;
    border-radius: 60% 40% 55% 45% / 40% 45% 55% 60%;
    border: 2px dashed rgba(249,185,49,.2);
    animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__badge {
    position: absolute;
    width: 100px; height: 100px;
    bottom: 40px; left: -30px;
    z-index: 3;
    animation-delay: 1s;
}

/* Ícones circulares — sem fundo branco */
.float-icon img,
.float-icon,
.hero__badge,
.port-icon,
.mini-valor img,
.missao-card__icon img,
.processo__cta-icon,
.footer__icons img {
    border-radius: 50%;
}

/* Floating icons */
.float-icon {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 1;
}
.float-icon--1 { width: 80px; top: 18%; right: 4%; animation-delay: 0s; }
.float-icon--2 { width: 55px; top: 65%; left: 4%; animation-delay: 1.5s; }
.float-icon--3 { width: 45px; bottom: 12%; right: 10%; animation-delay: .8s; }

/* Scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    color: rgba(255,255,255,.3);
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    z-index: 2;
}
.scroll-bar {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50%       { opacity: .3; transform: scaleY(.5); }
}

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto {
    position: relative;
    background: var(--purple);
    padding: 9rem 2rem;
    clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
    margin: -60px 0;
    overflow: hidden;
    text-align: center;
}
.manifesto::before {
    content: '\201C';
    position: absolute;
    top: -80px; left: 3%;
    font-size: 28rem;
    font-family: var(--font-serif);
    color: rgba(255,255,255,.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.manifesto__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.manifesto__text { margin-bottom: 2.5rem; }
.manifesto__quote-mark {
    display: block;
    font-size: 4rem;
    color: var(--yellow);
    font-family: Georgia, serif;
    line-height: .6;
    margin-bottom: .75rem;
}
.manifesto__phrase {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -.02em;
}
.manifesto__phrase em { color: var(--yellow); font-style: italic; }
.manifesto__desc {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}
.manifesto__sweep {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--purple-dark), var(--yellow));
    background-size: 200%;
    animation: sweepAnim 4s linear infinite;
}
@keyframes sweepAnim { 0% { background-position: 0%; } 100% { background-position: 200%; } }

/* ============================================
   SOBRE NÓS
   ============================================ */
.sobre {
    padding: 9rem 0;
    background: var(--white);
}
.sobre__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Visual side */
.sobre__visual { position: relative; }
.sobre__photo-frame {
    position: relative;
    display: inline-block;
    width: 100%;
}
.sobre__photo {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--r-lg);
    position: relative; z-index: 1;
}
.sobre__photo-border {
    position: absolute;
    inset: -14px;
    border: 3px solid var(--yellow);
    border-radius: var(--r-lg);
    z-index: 0;
    transform: rotate(2deg);
    transition: transform .5s;
}
.sobre__visual:hover .sobre__photo-border { transform: rotate(0deg); }
.sobre__since {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--purple-deep);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    z-index: 2;
    border: 4px solid var(--yellow);
}
.since-top { font-size: .65rem; color: rgba(255,255,255,.6); letter-spacing: .1em; text-transform: uppercase; }
.since-month { font-size: 1rem; font-family: var(--font-head); font-weight: 700; color: var(--yellow); }
.since-year { font-size: 1.4rem; font-family: var(--font-head); font-weight: 900; color: var(--white); }

/* Content side */
.sobre__content { display: flex; flex-direction: column; gap: 0; }
.sobre__text p { color: var(--text-muted); line-height: 1.8; margin-bottom: .9rem; }
.sobre__destaque strong { color: var(--purple); font-size: 1.15rem; }
.sobre__valores-mini {
    display: flex; flex-direction: column; gap: 1rem;
    margin: 1.5rem 0;
}
.mini-valor {
    display: flex; align-items: center; gap: 1rem;
    padding: .875rem 1.25rem;
    background: var(--off-white);
    border-radius: var(--r-md);
    border-left: 4px solid var(--yellow);
}
.mini-valor img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.mini-valor strong { display: block; font-size: .9rem; color: var(--purple-dark); }
.mini-valor span { font-size: .8rem; color: var(--text-muted); }

/* ============================================
   MISSÃO / VISÃO / VALORES
   ============================================ */
.missao {
    padding: 6rem 0;
    background: var(--off-white);
}
.missao__header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}
.missao__header .section-sub { margin: 0 auto; }
.missao__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.missao-card {
    will-change: transform, opacity;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}
.missao-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}
.missao-card--yellow::before { background: var(--yellow); }
.missao-card:hover { transform: translateY(-8px); border-color: var(--purple); box-shadow: 0 20px 50px rgba(110,61,156,.15); }
.missao-card:hover::before { transform: scaleX(1); }
.missao-card--yellow:hover { border-color: var(--yellow); }
.missao-card__icon { width: 70px; height: 70px; margin: 0 auto 1.5rem; }
.missao-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.missao-card h3 { font-size: 1.4rem; color: var(--purple); margin-bottom: .875rem; }
.missao-card--yellow h3 { color: var(--purple-dark); }
.missao-card p { color: var(--text-muted); line-height: 1.75; font-size: .95rem; }

/* ============================================
   SERVIÇOS
   ============================================ */
.servicos {
    padding: 9rem 0;
    background: var(--purple-deep);
}
.servicos__header { text-align: center; margin-bottom: 5rem; }
.servicos__header .section-sub { margin: 0 auto; }
.servicos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* 3D Flip Cards */
.svc-card {
    height: 220px;
    perspective: 1000px;
    cursor: none;
}
.svc-card__inner {
    position: relative;
    width: 100%; height: 100%;
    transform-style: preserve-3d;
    transition: transform .7s cubic-bezier(.4,.2,.2,1);
}
.svc-card:hover .svc-card__inner { transform: rotateY(-180deg); }
.svc-card__front,
.svc-card__back {
    position: absolute; inset: 0;
    border-radius: var(--r-md);
    padding: 2rem 1.5rem;
    backface-visibility: hidden;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
}
.svc-card__front {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    transform: rotateY(0deg);
    transition: background .3s;
}
.svc-card:hover .svc-card__front { background: rgba(255,255,255,.09); }
.svc-card__back {
    background: var(--yellow);
    transform: rotateY(180deg);
}
.svc-card__emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.svc-card__front h3 { color: var(--white); font-size: .95rem; margin-bottom: .75rem; }
.svc-hint {
    color: var(--yellow);
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: auto;
}
.svc-card__back h3 { color: var(--purple-dark); font-size: 1rem; margin-bottom: .75rem; }
.svc-card__back p { color: var(--purple-dark); font-size: .82rem; line-height: 1.65; }
.svc-cta {
    display: inline-block;
    margin-top: 1rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--purple-dark);
    font-family: var(--font-head);
    letter-spacing: .05em;
    cursor: none;
    transition: letter-spacing .3s;
}
.svc-cta:hover { letter-spacing: .1em; }

/* ============================================
   PACKS
   ============================================ */
.packs { padding: 9rem 0; background: var(--white); }
.packs__header { text-align: center; margin-bottom: 4rem; }
.packs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}
.pack-card {
    border-radius: var(--r-lg);
    border: 2px solid var(--gray);
    padding: 2.5rem;
    position: relative;
    transition: all .4s var(--ease);
    background: var(--white);
}
.pack-card:hover {
    border-color: var(--purple);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(110,61,156,.15);
}
.pack-card--featured {
    background: var(--purple-deep);
    border-color: var(--yellow);
    transform: scale(1.04);
}
.pack-card--featured:hover { transform: scale(1.04) translateY(-8px); }
.pack-tag-top {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--purple-dark);
    font-family: var(--font-head);
    font-size: .7rem; font-weight: 700;
    padding: .35rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.pack-card__top { margin-bottom: 1.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray); }
.pack-card--featured .pack-card__top { border-color: rgba(255,255,255,.1); }
.pack-name { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--purple); margin-bottom: .75rem; }
.pack-card--featured .pack-name { color: rgba(255,255,255,.8); }
.pack-price { display: flex; align-items: baseline; gap: .25rem; margin-bottom: .4rem; }
.pack-amount { font-family: var(--font-head); font-size: 3rem; font-weight: 900; color: var(--purple-dark); line-height: 1; }
.pack-card--featured .pack-amount { color: var(--yellow); }
.pack-period { font-size: .9rem; color: var(--text-muted); }
.pack-card--featured .pack-period { color: rgba(255,255,255,.5); }
.pack-ideal { font-size: .82rem; color: var(--text-muted); }
.pack-card--featured .pack-ideal { color: rgba(255,255,255,.55); }
.pack-list { list-style: none; margin-bottom: 1.5rem; }
.pack-list li {
    display: flex; align-items: flex-start; gap: .6rem;
    padding: .55rem 0;
    font-size: .88rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--gray);
}
.pack-card--featured .pack-list li { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.1); }
.pack-list li::before { content: '✓'; color: var(--purple); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }
.pack-card--featured .pack-list li::before { color: var(--yellow); }
.pack-list--no::before { content: '✕' !important; color: var(--text-muted) !important; opacity: .5; }
.pack-extra { font-size: .8rem; color: var(--text-muted); text-align: center; margin-bottom: 1.5rem; }
.pack-card--featured .pack-extra { color: rgba(255,255,255,.5); }
.pack-extra strong { color: var(--purple); }
.pack-card--featured .pack-extra strong { color: var(--yellow); }
.pack-btn { width: 100%; justify-content: center; }

/* Setup banner */
.setup-banner {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    border-radius: var(--r-lg);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.setup-banner__info h3 { color: var(--white); font-size: 1.4rem; margin-bottom: .5rem; }
.setup-banner__info p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: .25rem; }
.setup-banner__info small { color: rgba(255,255,255,.45); font-size: .78rem; font-style: italic; }
.setup-banner__price { text-align: center; flex-shrink: 0; }
.setup-banner__price span { display: block; font-family: var(--font-head); font-size: 2.8rem; font-weight: 900; color: var(--yellow); }
.setup-banner__price small { color: rgba(255,255,255,.5); font-size: .78rem; }

/* ============================================
   MARQUEE SEPARADOR
   ============================================ */
.marquee-wrap {
    background: var(--yellow);
    padding: .875rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: inline-flex;
    gap: 0;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    color: var(--purple-dark);
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 0 1.5rem;
    white-space: nowrap;
}
.marquee-dot {
    color: var(--purple) !important;
    padding: 0 !important;
    font-size: .7rem !important;
    align-self: center;
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ============================================
   COMO TRABALHAMOS
   ============================================ */
.processo {
    padding: 9rem 0;
    background: var(--white);
}
.processo__header { text-align: center; margin-bottom: 5rem; }
.processo__header .section-sub { margin: 0 auto; }
.processo__steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 5rem;
    position: relative;
}
.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}
.step__num {
    width: 64px; height: 64px;
    background: var(--purple-deep);
    color: var(--yellow);
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    border: 3px solid var(--yellow);
    position: relative;
    z-index: 1;
    transition: all .4s;
}
.step:hover .step__num {
    background: var(--yellow);
    color: var(--purple-dark);
    transform: scale(1.1);
}
.step__content h3 {
    font-size: 1rem;
    color: var(--purple-dark);
    margin-bottom: .5rem;
}
.step__content p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.step__connector {
    flex-shrink: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--yellow));
    margin-top: 32px;
    position: relative;
}
.step__connector::after {
    content: '';
    position: absolute;
    right: -6px; top: -4px;
    width: 0; height: 0;
    border-left: 8px solid var(--yellow);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* CTA Banner */
.processo__cta {
    background: linear-gradient(135deg, var(--purple-deep), var(--purple-dark));
    border-radius: var(--r-lg);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}
.processo__cta::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: rgba(249,185,49,.05);
    border-radius: 50%;
}
.processo__cta-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.processo__cta-icon {
    width: 90px; height: 90px;
    flex-shrink: 0;
    object-fit: contain;
}
.processo__cta-text { flex: 1; }
.processo__cta-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: .5rem;
}
.processo__cta-text p {
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    line-height: 1.6;
}

/* ============================================
   BOTÃO FLUTUANTE CHECK-UP
   ============================================ */
.checkup-float {
    position: fixed;
    right: 1.5rem;
    bottom: 6rem;
    z-index: 990;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    border: 3px solid var(--yellow);
    border-radius: 50px;
    padding: .75rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: none;
    box-shadow: 0 8px 30px rgba(110,61,156,.4);
    transition: all .35s var(--ease);
    animation: floatBtn 3s ease-in-out infinite;
}
.checkup-float:hover { transform: scale(1.06) translateY(-3px); box-shadow: 0 12px 40px rgba(110,61,156,.6); }
@keyframes floatBtn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.checkup-float__icon { font-size: 1.3rem; }
.checkup-float__label {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .72rem;
    color: var(--yellow);
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ============================================
   POPUP CHECK-UP
   ============================================ */
.checkup-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 1996;
    opacity: 0; pointer-events: none;
    transition: opacity .4s;
    backdrop-filter: blur(6px);
}
.checkup-overlay.is-open { opacity: 1; pointer-events: auto; }

.checkup-popup {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(.9);
    width: min(480px, 94vw);
    background: var(--white);
    border-radius: var(--r-lg);
    z-index: 1997;
    padding: 2.5rem 2.5rem 2rem;
    opacity: 0; pointer-events: none;
    transition: all .45s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
    max-height: 92vh;
    overflow-y: auto;
}
.checkup-popup.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}
.checkup-popup__close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--gray);
    border: none;
    color: var(--text-muted);
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: .85rem;
    display: flex; align-items: center; justify-content: center;
    cursor: none;
    transition: all .3s;
}
.checkup-popup__close:hover { background: var(--purple); color: var(--white); }

.checkup-popup__header { margin-bottom: 1.75rem; }
.checkup-popup__tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--purple-dark);
    font-family: var(--font-head);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 50px;
    margin-bottom: .875rem;
}
.checkup-popup__header h3 {
    font-size: 1.6rem;
    color: var(--purple-dark);
    line-height: 1.2;
    margin-bottom: .6rem;
}
.checkup-popup__header h3 span { color: var(--purple); }
.checkup-popup__header p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.6;
}

/* Form check-up */
.checkup-form__field {
    position: relative;
    margin-bottom: 1rem;
}
.checkup-form__field input {
    width: 100%;
    padding: 1.1rem 1rem .65rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--r-sm);
    font-size: .93rem;
    font-family: var(--font-body);
    background: var(--white);
    transition: border-color .3s;
    outline: none;
    cursor: none;
}
.checkup-form__field--ig input { padding-left: 2.2rem; }
.ig-prefix {
    position: absolute;
    top: 50%; left: .9rem;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--purple);
    font-size: .95rem;
    pointer-events: none;
    margin-top: .15rem;
}
.checkup-form__field input:focus { border-color: var(--purple); }
.checkup-form__field label {
    position: absolute;
    top: 1rem; left: 1rem;
    font-size: .88rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all .25s;
}
.checkup-form__field--ig label { left: 2.2rem; }
.checkup-form__field input:not(:placeholder-shown) ~ label,
.checkup-form__field input:focus ~ label {
    top: .28rem;
    font-size: .65rem;
    color: var(--purple);
    font-weight: 600;
    letter-spacing: .05em;
}
.checkup-form__note {
    text-align: center;
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: .75rem;
}

/* ============================================
   INSTAGRAM POPUP
   ============================================ */
.ig-popup__overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 1998;
    opacity: 0; pointer-events: none;
    transition: opacity .4s;
    backdrop-filter: blur(4px);
}
.ig-popup__overlay.is-open { opacity: 1; pointer-events: auto; }

.ig-popup {
    position: fixed;
    bottom: -400px;
    left: 50%; transform: translateX(-50%);
    width: min(420px, 92vw);
    background: linear-gradient(145deg, var(--purple-deep), var(--purple-dark));
    border-radius: var(--r-lg);
    z-index: 1999;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    border: 1px solid rgba(249,185,49,.2);
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
    transition: bottom .6s cubic-bezier(.34,1.56,.64,1);
}
.ig-popup.is-open { bottom: 2rem; }
.ig-popup__close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(255,255,255,.1);
    border: none;
    color: rgba(255,255,255,.7);
    width: 30px; height: 30px;
    border-radius: 50%;
    font-size: .85rem;
    display: flex; align-items: center; justify-content: center;
    cursor: none;
    transition: all .3s;
}
.ig-popup__close:hover { background: rgba(255,255,255,.2); color: var(--white); }
.ig-popup__icon {
    width: 80px; height: 80px;
    background: transparent;
    border-radius: 50%;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    padding: 0;
}
.ig-popup__icon img { width: 100%; height: 100%; object-fit: contain; }
.ig-popup h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: .6rem;
}
.ig-popup p {
    color: rgba(255,255,255,.65);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.ig-popup__btn {
    display: block;
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    padding: .875rem 1.5rem;
    border-radius: 50px;
    margin-bottom: .875rem;
    transition: all .3s;
    cursor: none;
}
.ig-popup__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(220,39,67,.4); }
.ig-popup__later {
    background: none;
    border: none;
    color: rgba(255,255,255,.4);
    font-size: .8rem;
    cursor: none;
    transition: color .3s;
    font-family: var(--font-body);
}
.ig-popup__later:hover { color: rgba(255,255,255,.7); }

/* ============================================
   PORTFÓLIO
   ============================================ */
.portfolio {
    padding: 7rem 0;
    background: var(--purple);
    position: relative;
    overflow: hidden;
}
.portfolio__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4rem;
}
.portfolio__big-quote {
    margin: 2rem 0 1.5rem;
    padding-left: 1.25rem;
    border-left: 4px solid var(--yellow);
}
.portfolio__big-quote p {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 900;
    color: rgba(255,255,255,.85);
    line-height: 1.3;
    letter-spacing: -.01em;
}
.portfolio__big-quote em {
    color: var(--yellow);
    font-style: italic;
}
.portfolio__btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0; }
.portfolio__icons {
    position: relative;
    width: 200px; height: 200px;
    flex-shrink: 0;
}
.port-icon { position: absolute; }
.port-icon--1 { width: 100px; top: 0; left: 0; }
.port-icon--2 { width: 80px; bottom: 0; right: 0; animation-delay: 1s; }
.port-icon--3 { width: 60px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 2s; }

/* ============================================
   TESTEMUNHOS
   ============================================ */
.testemunhos {
    padding: 5rem 0 3.5rem;
    background: var(--purple-deep);
    overflow: hidden;
}
.testemunhos__header {
    text-align: center;
    margin-bottom: 2rem;
}
.testemunhos__header .section-sub { margin: 0 auto; }
.testemunhos__big-title {
    font-family: var(--font-head);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: .5rem;
    text-transform: uppercase;
}

/* Stage + track */
.testemunhos__stage {
    position: relative;
    width: 100%;
}
.testemunhos__track {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: calc((100vw - 1140px) / 2);
    padding-right: calc((100vw - 1140px) / 2);
}
.testemunhos__track::-webkit-scrollbar { display: none; }

/* Cards */
.tb-card {
    flex-shrink: 0;
    width: 280px;
    scroll-snap-align: center;
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.3);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    cursor: pointer;
}
.tb-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 18px 55px rgba(0,0,0,.4);
}
.tb-card__img-wrap {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}
.tb-card__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s var(--ease);
}
.tb-card:hover .tb-card__img-wrap img {
    transform: scale(1.03);
}
.tb-card__source {
    padding: .75rem 1.25rem;
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--purple);
    border-top: 2px solid var(--yellow);
}

/* Arrows */
.tb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .25s, border-color .25s, transform .25s;
    z-index: 2;
}
.tb-arrow svg { width: 20px; height: 20px; }
.tb-arrow--prev { left: 1.5rem; }
.tb-arrow--next { right: 1.5rem; }
.tb-arrow:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--text);
    transform: translateY(-50%) scale(1.1);
}

/* Dots */
.testemunhos__dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: .5rem;
}
.tb-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    border: none;
    cursor: pointer;
    transition: background .3s, transform .3s;
    padding: 0;
}
.tb-dot.is-active {
    background: var(--yellow);
    transform: scale(1.3);
}

/* Footer */
.testemunhos__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    gap: 2rem;
    flex-wrap: wrap;
}
.testemunhos__note {
    font-size: .95rem;
    color: rgba(255,255,255,.55);
    font-style: italic;
    max-width: 500px;
}
.testemunhos__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.stat-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}
.stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: .25rem;
}

/* ============================================
   FAQs
   ============================================ */
.faqs {
    padding: 5rem 0 4rem;
    background: var(--white);
}
.faqs__header {
    text-align: center;
    margin-bottom: 4rem;
}
.faqs__header .section-sub { margin: 0 auto; }

.faqs__block {
    max-width: 780px;
    margin: 0 auto 3.5rem;
}
.faqs__block--alt {
    margin-top: 1rem;
}
.faqs__block-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--purple);
    margin-bottom: 1.25rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--yellow);
    display: inline-block;
}

/* Accordion */
.accordion { display: flex; flex-direction: column; }

.accordion__item {
    border-bottom: 1px solid rgba(110,61,156,.12);
}
.accordion__item:first-child {
    border-top: 1px solid rgba(110,61,156,.12);
}

.accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    transition: color .25s;
}
.accordion__trigger:hover { color: var(--purple); }
.accordion__trigger[aria-expanded="true"] {
    color: var(--purple);
}

.accordion__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--purple);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.accordion__trigger[aria-expanded="true"] .accordion__icon {
    transform: rotate(45deg);
}

.accordion__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .38s cubic-bezier(.4,0,.2,1);
}
.accordion__body.is-open {
    grid-template-rows: 1fr;
}
.accordion__inner {
    overflow: hidden;
}
.accordion__inner p {
    padding: 0 1.5rem .5rem 0;
    padding-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: .975rem;
    line-height: 1.8;
}

/* ============================================
   CONTACTO
   ============================================ */
.contacto { padding: 5rem 0 9rem; background: var(--off-white); }
.contacto__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}
.contacto__desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: .5rem 0 2rem;
}
.contacto__details { margin-bottom: 2rem; }
.contacto-item {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: .875rem;
    color: var(--text);
    font-size: .95rem;
    font-weight: 500;
    cursor: none;
    transition: color .3s;
}
.contacto-item:hover { color: var(--purple); }
.contacto-item__icon {
    width: 38px; height: 38px;
    background: var(--purple);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    color: var(--white);
    flex-shrink: 0;
}
.contacto__social { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.contacto__big-text {
    margin: 2rem 0;
}
.contacto__big-text p {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--purple-dark);
}
.contacto__big-text p em {
    font-style: italic;
    color: var(--yellow);
    font-family: var(--font-serif);
}
.social-pill {
    padding: .45rem 1.1rem;
    border: 2px solid var(--purple);
    border-radius: 50px;
    color: var(--purple);
    font-size: .8rem;
    font-weight: 600;
    font-family: var(--font-head);
    transition: all .3s;
    cursor: none;
}
.social-pill:hover { background: var(--purple); color: var(--white); transform: translateY(-2px); }
.contacto__photo-small {
    width: 160px;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 3px solid var(--yellow);
}
.contacto__photo-small img {
    width: 100%; height: 200px;
    object-fit: cover; object-position: top;
}

/* Form */
.contacto__form-title {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 1.75rem;
}
.contacto__form-wrap {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 3rem;
    box-shadow: 0 10px 50px rgba(110,61,156,.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { position: relative; margin-bottom: 1rem; }
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 1.2rem 1rem .7rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--r-sm);
    font-size: .95rem;
    font-family: var(--font-body);
    background: var(--white);
    transition: border-color .3s;
    outline: none;
    resize: none;
    cursor: none;
    -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--purple); }
.form-field label {
    position: absolute;
    top: 1rem; left: 1rem;
    font-size: .9rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all .25s;
}
.form-field input:not(:placeholder-shown) ~ label,
.form-field input:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label {
    top: .3rem;
    font-size: .68rem;
    color: var(--purple);
    font-weight: 600;
    letter-spacing: .05em;
}
.form-field select { color: var(--text-muted); }
.form-field select option { color: var(--text); }
.form-field:last-of-type { margin-bottom: 1.5rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--purple-deep);
    color: var(--white);
    padding: 5rem 0 2.5rem;
}
.footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo { height: 44px; margin-bottom: 1rem; }
.footer__brand p { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: .75rem; }
.footer__social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; font-weight: 700;
    color: rgba(255,255,255,.6);
    transition: all .3s;
    cursor: none;
}
.footer__social a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--purple-dark); }
.footer__nav h4, .footer__contact h4 {
    color: var(--yellow);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.footer__nav ul { list-style: none; }
.footer__nav ul li { margin-bottom: .6rem; }
.footer__nav ul a {
    color: rgba(255,255,255,.5);
    font-size: .88rem;
    transition: color .3s;
    cursor: none;
}
.footer__nav ul a:hover { color: var(--white); }
.footer__contact p { color: rgba(255,255,255,.5); font-size: .88rem; margin-bottom: .5rem; }
.footer__icons { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer__icons img { width: 36px; height: 36px; object-fit: contain; }
.footer__bottom {
    display: flex; align-items: center; justify-content: space-between;
}
.footer__bottom p, .footer__bottom a {
    color: rgba(255,255,255,.3);
    font-size: .82rem;
    cursor: none;
}
.footer__bottom a:hover { color: rgba(255,255,255,.7); }

/* ============================================
   GSAP — fallback: garante visibilidade
   ============================================ */
.missao-card,
.svc-card,
.step,
.missao__header,
.missao__header * {
    opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet largo */
@media (max-width: 1100px) {
    .servicos__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__main { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
}

/* Tablet */
@media (max-width: 900px) {
    /* Geral */
    .sobre, .missao, .servicos, .processo, .portfolio, .contacto { padding: 5rem 0; }
    .container { padding: 0 1.5rem; }

    /* Sobre */
    .sobre__grid { grid-template-columns: 1fr; gap: 3rem; }
    .sobre__photo { height: 340px; }
    .sobre__photo-border { inset: -8px; }
    .sobre__since { width: 100px; height: 100px; bottom: -12px; right: -8px; }
    .since-year { font-size: 1.1rem; }

    /* Missão */
    .missao__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    /* Processo */
    .processo__steps { flex-direction: column; align-items: center; }
    .step { max-width: 420px; width: 100%; }
    .step__connector {
        width: 2px; height: 28px;
        background: linear-gradient(to bottom, var(--purple), var(--yellow));
        margin-top: 0;
    }
    .step__connector::after {
        right: -4px; top: auto; bottom: -6px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 8px solid var(--yellow);
        border-bottom: none;
    }
    .processo__cta-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
    .processo__cta-icon { width: 70px; height: 70px; }
    .processo__cta { padding: 2.5rem 2rem; }

    /* Portfolio */
    .portfolio__inner { grid-template-columns: 1fr; }
    .portfolio__icons { display: none; }
    .portfolio__btns { flex-direction: column; align-items: flex-start; }
    .portfolio__big-quote p { font-size: clamp(1.2rem, 4vw, 1.8rem); }

    /* Contacto */
    .contacto__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .contacto__photo-small { display: none; }

    /* Footer */
    .footer__main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Mobile */
@media (max-width: 768px) {
    body { cursor: auto; overflow-x: hidden; }
    .cursor, .cursor-follower { display: none; }
    a, button { cursor: pointer; }

    /* Nav */
    .nav { padding: 1rem 1.25rem; }
    .nav.is-scrolled { padding: .75rem 1.25rem; }
    .nav__logo img { height: 36px; }
    .nav__links, .nav__cta { display: none; }
    .nav__burger { display: flex; }

    /* Hero */
    .hero {
        min-height: 100svh;
    }
    .hero__content {
        grid-template-columns: 1fr;
        padding: 80px 1.25rem 3rem;
        text-align: center;
        gap: 1.5rem;
        min-height: unset;
        align-items: center;
    }
    .hero__visual { order: -1; }
    .hero__img-wrap { max-width: 220px; margin: 0 auto; }
    .hero__photo { height: 250px; max-width: 220px; }
    .hero__img-deco { display: none; }
    .hero__badge { width: 60px; height: 60px; bottom: 6px; left: -8px; }
    .hero__title { font-size: clamp(2.2rem, 9vw, 3rem); }
    .hero__sub { font-size: .95rem; }
    .hero__btns { justify-content: center; flex-direction: column; align-items: center; gap: .75rem; }
    .hero__btns .btn { width: 100%; max-width: 300px; justify-content: center; }
    .hero__eyebrow { font-size: .6rem; letter-spacing: .08em; }
    .float-icon--1 { width: 40px; top: 12%; right: 2%; }
    .float-icon--2 { display: none; }
    .float-icon--3 { width: 30px; bottom: 6%; right: 4%; }

    /* Centrar texto em mobile — regras precisas */
    .section-tag { text-align: center; display: block; }
    .section-title { text-align: center; }
    .section-sub { text-align: center; margin-left: auto; margin-right: auto; }

    /* Sobre */
    .sobre__content { align-items: center; text-align: center; }
    .sobre__text { text-align: center; }
    .sobre__destaque { text-align: center; }
    .sobre__valores-mini { width: 100%; max-width: 400px; margin-left: auto; margin-right: auto; }
    .mini-valor { text-align: left; }
    .sobre__content .btn { align-self: center; }

    /* Portfolio */
    .portfolio__content { text-align: center; }
    .portfolio__big-quote { border-left: none; border-top: 4px solid var(--yellow); padding-left: 0; padding-top: 1rem; }
    .portfolio__btns { align-items: center; }

    /* Contacto */
    .contacto__info { text-align: center; align-items: center; display: flex; flex-direction: column; }
    .contacto__details { align-items: center; }
    .contacto-item { justify-content: center; }
    .contacto__social { justify-content: center; }
    .contacto__big-text { text-align: center; }
    .contacto__form-title { text-align: center; }

    /* Manifesto */
    .manifesto {
        clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
        margin: -20px 0;
        padding: 7rem 1.5rem;
    }
    .manifesto__phrase { font-size: clamp(1.6rem, 7vw, 2.5rem); }
    .manifesto__phrase br { display: none; }
    .manifesto__desc { font-size: .9rem; }
    .manifesto__desc br { display: none; }

    /* Sobre */
    .sobre { padding: 4rem 0; }
    .sobre__grid { gap: 2.5rem; }
    .sobre__photo { height: 280px; }
    .sobre__photo-border { display: none; }
    .sobre__since { width: 90px; height: 90px; bottom: -10px; right: -5px; }
    .since-top { font-size: .55rem; }
    .since-month { font-size: .85rem; }
    .since-year { font-size: 1rem; }
    .sobre__valores-mini { gap: .75rem; }
    .mini-valor { padding: .75rem 1rem; }

    /* Missão */
    .missao { padding: 4rem 0; }
    .missao__header { margin-bottom: 2.5rem; }
    .missao__grid { gap: 1.25rem; }
    .missao-card { padding: 2rem 1.5rem; }

    /* Marquee */
    .marquee-track span { font-size: .78rem; padding: 0 1rem; }

    /* Serviços */
    .servicos { padding: 4rem 0; }
    .servicos__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .svc-card { height: 190px; }
    .svc-card__emoji { font-size: 2rem; }
    .svc-card__front h3 { font-size: .85rem; }

    /* Processo */
    .processo { padding: 4rem 0; }
    .processo__cta { padding: 2rem 1.5rem; }
    .processo__cta-text h3 { font-size: 1.2rem; }

    /* Portfolio */
    .portfolio { padding: 4rem 0; }
    .portfolio__big-quote { margin: 1.25rem 0 1.25rem; }

    /* Testemunhos */
    .testemunhos { padding: 5rem 0 3rem; }
    .testemunhos__track { padding-left: 1.25rem; padding-right: 1.25rem; }
    .tb-card { width: 290px; }
    .tb-arrow { width: 40px; height: 40px; }
    .tb-arrow--prev { left: .5rem; }
    .tb-arrow--next { right: .5rem; }
    .testemunhos__footer { flex-direction: column; text-align: center; align-items: center; }
    .testemunhos__note { text-align: center; }

    /* FAQs */
    .faqs { padding: 5rem 0; }
    .faqs__header { margin-bottom: 2.5rem; }
    .accordion__trigger { font-size: .93rem; padding: 1.1rem 0; }
    .accordion__inner p { font-size: .9rem; }

    /* Contacto */
    .contacto { padding: 4rem 0; }
    .contacto__form-wrap { padding: 2rem 1.25rem; }
    .contacto__desc br { display: none; }

    /* Footer */
    .footer { padding: 3.5rem 0 2rem; }
    .footer__main { grid-template-columns: 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; gap: .6rem; text-align: center; }

    /* Check-up float */
    .checkup-float {
        right: 1rem;
        bottom: 1.5rem;
        padding: .6rem .9rem;
        border-radius: 50px;
    }
    .checkup-float__label { font-size: .65rem; }
    .checkup-float__icon { font-size: 1.1rem; }

    /* IG popup */
    .ig-popup { width: 94vw; padding: 2rem 1.5rem 1.5rem; }

    /* Check-up popup */
    .checkup-popup { padding: 2rem 1.5rem 1.5rem; width: 96vw; }
    .checkup-popup__header h3 { font-size: 1.3rem; }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }

    /* Hero */
    .hero__content { padding: 70px 1rem 2.5rem; gap: 1.25rem; }
    .hero__img-wrap { max-width: 180px; }
    .hero__photo { height: 210px; max-width: 180px; }
    .hero__badge { width: 52px; height: 52px; }
    .hero__title { font-size: clamp(1.9rem, 8.5vw, 2.5rem); }
    .hero__sub { font-size: .88rem; }
    .hero__eyebrow { display: none; }

    /* Serviços — sem flip em ecrãs pequenos */
    .servicos__grid { grid-template-columns: 1fr; gap: 1rem; }
    .svc-card { height: auto; }
    .svc-card__inner { transform-style: flat; transition: none; }
    .svc-card:hover .svc-card__inner { transform: none; }
    .svc-card__front {
        position: relative; inset: unset;
        border-radius: var(--r-md);
        padding: 1.5rem;
        min-height: 140px;
    }
    .svc-card__back { display: none; }
    .svc-hint { display: none; }
    .svc-card__emoji { font-size: 1.8rem; margin-bottom: .6rem; }

    /* Processo */
    .step { padding: 0 .5rem; }
    .step__num { width: 52px; height: 52px; font-size: .95rem; }
    .processo__cta-inner .btn { width: 100%; justify-content: center; }

    /* Manifesto */
    .manifesto { padding: 6rem 1rem; clip-path: none; margin: 0; }

    /* Footer */
    .footer__icons { display: none; }
}
