/* ===== VARIABLES ===== */
:root {
    --color-primary: #00A2E0;
    --color-primary-glow: rgba(0, 162, 224, 0.4);
    --color-primary-light: #33b5e8;
    --color-secondary: #041F30;
    --color-secondary-light: #0d2d42;
    --color-background: #ffffff;
    --color-surface: #F6F6FB;
    --color-surface-dark: #D0D6E2;
    --color-text-dark: #202020;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-success: #25d366;

    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'Geist', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(0, 162, 224, 0.35);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-label.light {
    color: var(--color-primary-light);
}

.label-line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color-primary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-secondary);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-title.light {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 640px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.section-subtitle.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.55);
}

.required {
    color: #ef4444;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    animation: shine 5s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 162, 224, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 60px;
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(0, 162, 224, 0.08);
}

/* ===== NAVBAR ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(4, 31, 48, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-img {
    height: 48px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-cta {
    padding: 10px 24px !important;
    border-radius: 60px !important;
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--color-primary-light) !important;
    transform: translateY(-1px);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    margin: 5px 0;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 110px 0 48px;
    margin-bottom: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(4, 31, 48, 0.92) 0%, rgba(4, 31, 48, 0.85) 40%, rgba(4, 31, 48, 0.80) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 96px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 60px;
    background: rgba(0, 162, 224, 0.12);
    border: 1px solid rgba(0, 162, 224, 0.25);
    color: var(--color-primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(2.2rem, 4.4vw, 3.4rem);
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    font-weight: 900;
    line-height: 1.1;
}

.text-highlight {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 28px;
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-text strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats.hero-stats-2 {
    grid-template-columns: repeat(2, max-content);
    gap: 48px;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    font-weight: 500;
}

/* Hero Visual Card */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Hero CTA Card (criativo) ===== */
.hero-cta-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.10) 0%, rgba(4, 31, 48, 0.55) 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-left: 4px solid #38BDF8;
    border-radius: 20px;
    padding: 36px 32px;
    backdrop-filter: blur(14px);
    width: 100%;
    max-width: 460px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    overflow: hidden;
}

.hero-cta-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 162, 224, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.hero-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #38BDF8;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.hero-cta-label i {
    font-size: 0.85rem;
}

.hero-cta-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
    margin: 0 0 12px 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.hero-cta-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 1;
}

.hero-cta-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 1;
}

.hero-cta-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.hero-cta-meta-item i {
    color: var(--color-primary-light);
    font-size: 0.85rem;
}

.hero-cta-meta-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

/* ===== Botões criativos do hero ===== */
.hero-buttons .btn-primary-xl {
    display: grid;
    grid-template-columns: 24px 1fr 24px;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 20px 24px;
    border-radius: 12px;
    text-transform: none;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0284c7 100%);
    box-shadow: 0 14px 30px -8px rgba(0, 162, 224, 0.6);
}

.hero-buttons .btn-icon {
    font-size: 1.05rem;
    justify-self: start;
    line-height: 1;
}

.hero-buttons .btn-label {
    text-align: center;
    line-height: 1.2;
}

.hero-buttons .btn-arrow {
    justify-self: end;
    line-height: 1;
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: center;
    padding: 4px 0;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-text-link i {
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

.btn-text-link:hover {
    color: var(--color-primary-light);
}

.btn-text-link:hover i {
    transform: translateX(3px);
}

.hero-buttons .btn-primary-xl:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -8px rgba(0, 162, 224, 0.75);
}

.hero-buttons .btn-primary-xl .btn-arrow {
    transition: transform 0.25s ease;
}

.hero-buttons .btn-primary-xl:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-ghost:hover {
    background: rgba(0, 162, 224, 0.1);
    border-color: rgba(0, 162, 224, 0.4);
    color: var(--color-white);
}

.btn-ghost i {
    color: var(--color-primary-light);
}

/* ===== Social proof inline ===== */
.hero-social-proof {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    line-height: 1.55;
    margin: 0;
    max-width: 560px;
}

.hero-social-proof strong {
    color: #ffffff;
    font-weight: 600;
}

/* ===== SOCIAL PROOF BAR ===== */
.proof-bar {
    padding: 48px 0;
    background: var(--color-surface);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.proof-bar-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.proof-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.proof-logo {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.35);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 11px 20px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.proof-logo:hover {
    color: rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* ===== ABOUT / QUEM SOMOS ===== */
.about {
    padding: 100px 0;
    background: var(--color-background);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-area {
    position: relative;
}

.about-image-box {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-white);
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-floating-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 162, 224, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.about-floating-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.about-floating-sub {
    font-size: 0.78rem;
    color: var(--color-text-light);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 162, 224, 0.1);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-primary);
    margin-top: 2px;
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-secondary);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===== METODOLOGIA ===== */
.methodology {
    padding: 100px 0;
    background: var(--color-surface);
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.method-step {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.method-step p {
    flex: 1;
}

.method-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(4, 31, 48, 0.15);
}

.method-step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(4, 31, 48, 0.15);
    line-height: 1;
    margin-bottom: 12px;
}

.method-step-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed rgba(4, 31, 48, 0.12);
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 600;
}

.method-step-footer i {
    font-size: 0.82rem;
}

.method-cycle {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 56px;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0284c7 60%, #0369a1 100%);
    border-radius: var(--radius-md);
    box-shadow: 0 22px 50px -18px rgba(0, 162, 224, 0.55);
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.method-cycle::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.method-cycle-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.method-cycle-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.method-cycle-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
}

.method-cycle-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.method-cycle-desc {
    flex: 1;
    min-width: 260px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

@media (max-width: 768px) {
    .method-cycle {
        padding: 24px 22px;
        gap: 18px;
    }
    .method-cycle-desc {
        padding-left: 0;
        border-left: none;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
        min-width: 100%;
        font-size: 0.92rem;
    }
    .method-cycle-value {
        font-size: 1.7rem;
    }
    .method-cycle-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}

.method-step h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0a1628;
}

.method-step p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.7;
}

/* ===== DISCIPLINAS ===== */
.disciplines {
    padding: 100px 0;
    background: #020617;
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.disciplines::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.disciplines::after {
    content: '';
    position: absolute;
    bottom: -240px;
    left: -180px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(0, 162, 224, 0.12) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.disciplines .container {
    position: relative;
    z-index: 1;
}

.disciplines .section-label.disc-label {
    color: #38BDF8;
    letter-spacing: 0.22em;
}

.disciplines .section-label.disc-label .label-line {
    background: #38BDF8;
}

.disciplines .section-title {
    color: #ffffff;
}

.disciplines .section-subtitle {
    color: #94a3b8;
}

.disc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.disc-card {
    position: relative;
    padding: 28px 18px 40px;
    border-radius: 14px;
    border: 1px solid rgba(56, 189, 248, 0.15);
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    color: #e2e8f0;
    text-align: center;
    overflow: hidden;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.disc-card:hover,
.disc-card[aria-expanded="true"] {
    border-color: #38BDF8;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -10px rgba(56, 189, 248, 0.35);
}

.disc-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.disc-card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    stroke-width: 1.6;
}

.disc-card:hover .disc-card-icon,
.disc-card[aria-expanded="true"] .disc-card-icon {
    color: #38BDF8;
    opacity: 1;
    transform: scale(1.08);
}

.disc-card-code {
    font-family: ui-monospace, 'Geist Mono', Menlo, Consolas, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: #38BDF8;
    margin-bottom: 6px;
    font-weight: 700;
}

.disc-card-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.25;
    min-height: 2.5em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.disc-card-desc {
    color: #94a3b8;
    font-size: 0.78rem;
    line-height: 1.5;
}

.disc-card-plus {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #38BDF8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    transition: all 0.3s ease;
}

.disc-card[aria-expanded="true"] .disc-card-plus {
    transform: rotate(45deg);
    background: #38BDF8;
    color: #041F30;
    border-color: #38BDF8;
}

/* Expansion panel */
.disc-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, margin-top 0.25s ease;
}

.disc-expand.is-open {
    max-height: 2400px;
    margin-top: 24px;
}

.disc-expand-inner {
    border: 1px solid rgba(14, 165, 233, 0.2);
    background: #0f172a;
    border-radius: 18px;
    padding: 36px;
}

.disc-expand-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.disc-expand-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(56, 189, 248, 0.12);
    color: #38BDF8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 14px;
}

.disc-expand-icon svg {
    width: 100%;
    height: 100%;
}

.disc-expand-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

.disc-expand-scope {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 70ch;
}

.disc-expand-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.disc-expand-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
    border-bottom: 1px solid #1e293b;
}

.disc-expand-item:last-child {
    border-bottom: none;
}

.disc-expand-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.disc-expand-code {
    flex-shrink: 0;
    font-family: ui-monospace, 'Geist Mono', Menlo, Consolas, monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: #38BDF8;
    letter-spacing: 0.04em;
}

.disc-expand-sep {
    color: #475569;
    font-weight: 400;
}

.disc-expand-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.4;
}

.disc-expand-desc {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
    padding-left: 0;
}

.disc-expand-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #38BDF8;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.disc-expand-cta:hover {
    border-bottom-color: #38BDF8;
    transform: translateX(4px);
}

/* Bottom CTA bar */
.disc-cta-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 56px;
    padding: 22px 28px;
    background: linear-gradient(135deg, #38BDF8 0%, #0284c7 100%);
    border-radius: 16px;
    color: #041F30;
    flex-wrap: wrap;
}

.disc-cta-bar .disc-cta-icon {
    font-size: 1.4rem;
    color: #041F30;
}

.disc-cta-bar .disc-cta-label {
    font-family: ui-monospace, 'Geist Mono', Menlo, Consolas, monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #041F30;
    text-transform: uppercase;
}

.disc-cta-bar .disc-cta-text {
    flex: 1;
    color: #041F30;
    font-weight: 600;
    min-width: 220px;
    font-size: 0.98rem;
}

.disc-cta-bar .disc-cta-btn {
    background: #041F30;
    color: #ffffff;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.disc-cta-bar .disc-cta-btn:hover {
    background: #0f172a;
    transform: translateY(-2px);
}

/* ===== PRESENÇA NACIONAL ===== */
.national {
    padding: 100px 0;
    background: linear-gradient(165deg, var(--color-secondary), #0a1628);
    position: relative;
    overflow: hidden;
}

.national-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.national-stat {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.national-stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.national-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    font-weight: 500;
}

.national-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.city-tag {
    padding: 10px 20px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.city-tag:hover {
    background: rgba(0, 162, 224, 0.1);
    border-color: rgba(0, 162, 224, 0.25);
    color: var(--color-primary-light);
}

/* ===== PORTFOLIO ===== */
.portfolio {
    padding: 100px 0;
    background: var(--color-surface);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.portfolio-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image-bg {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
}

.portfolio-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 60px;
    background: rgba(0, 162, 224, 0.9);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-scope-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38BDF8;
    font-family: ui-monospace, 'Geist Mono', Menlo, Consolas, monospace;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    vertical-align: middle;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-info h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--color-secondary);
}

.portfolio-info .client {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 14px;
}

.portfolio-info .client i {
    color: var(--color-primary);
    margin-right: 4px;
}

.portfolio-disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.portfolio-disc {
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--color-surface);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-light);
}

/* ===== DEPOIMENTOS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--color-background);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.testimonial-card {
    padding: 36px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--color-white);
    transition: var(--transition);
}

/* Depoimento em destaque (vídeo vertical à esquerda, texto à direita) */
.testimonial-card--featured {
    display: grid;
    grid-template-columns: 250px 1fr;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.testimonial-video {
    background: var(--color-secondary);
    line-height: 0;
}

.testimonial-video video {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
}

.testimonial-featured-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card--featured .testimonial-text {
    font-size: 1rem;
}

/* Depoimentos secundários na coluna lateral */
.testimonial-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.testimonial-side .testimonial-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card--compact {
    padding: 24px 26px;
}

.testimonial-card--compact .testimonial-stars {
    font-size: 0.78rem;
    margin-bottom: 12px;
}

.testimonial-card--compact .testimonial-text {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.testimonial-card--compact .testimonial-avatar {
    width: 42px;
    height: 42px;
    font-size: 0.85rem;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author-info {
    flex: 1;
    min-width: 0;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--color-white);
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar--photo {
    background: #e5e7eb;
    box-shadow: 0 0 0 2px rgba(0, 162, 224, 0.2);
}

.testimonial-avatar--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--color-secondary);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--color-text-light);
}

.testimonial-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(10, 102, 194, 0.08);
    color: #0A66C2;
    font-size: 0.85rem;
    transition: all 0.18s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.testimonial-linkedin:hover {
    background: #0A66C2;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(165deg, var(--color-secondary) 0%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 162, 224, 0.1), transparent 70%);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content .section-title {
    color: var(--color-white);
    margin-bottom: 24px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    line-height: 1.75;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.cta-timeline {
    list-style: none;
    padding: 0;
    margin: 12px 0 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cta-timeline-step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
}

.cta-timeline-step:not(:last-child)::after {
    content: "→";
    color: rgba(255, 255, 255, 0.25);
    margin-left: 4px;
    font-size: 0.95rem;
}

.cta-timeline-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.5);
    color: #38BDF8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: ui-monospace, 'Geist Mono', Menlo, Consolas, monospace;
    font-size: 0.78rem;
    font-weight: 700;
}

.cta-timeline-label {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cta-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .cta-timeline-step:not(:last-child)::after {
        display: none;
    }
}

.cta-headline {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    line-height: 1.2;
    max-width: 22ch;
}

.desktop-only {
    display: inline;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.cta-benefit-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 162, 224, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
    font-size: 0.7rem;
}

/* Form Card */
.cta-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.cta-form-card form {
    width: 100%;
}

@media (max-width: 768px) {
    .cta-form-card {
        padding: 22px 18px;
        border-radius: 14px;
    }
    .cta-form-title {
        font-size: 1.15rem;
    }
    .cta-form-sub {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    .form-group {
        margin-bottom: 14px;
    }
    .form-group label {
        font-size: 0.72rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.92rem;
    }
    .form-submit {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    .form-urgency {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

.cta-form-title {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 8px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
}

.cta-form-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(0, 162, 224, 0.06);
}

.form-group select option {
    background: var(--color-secondary);
    color: #fff;
}

/* ===== Discipline Picker ===== */
.form-group--disc > .form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Chips compactos de projetos (formulário → WhatsApp) */
.disc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.form-group .disc-chip {
    position: relative;
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
    font-weight: initial;
    color: inherit;
    margin: 0;
}

.disc-chip input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    padding: 0;
    border: 0;
}

.disc-chip span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(56, 189, 248, 0.18);
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.75);
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.disc-chip:hover span {
    border-color: rgba(56, 189, 248, 0.45);
}

.disc-chip:focus-within span {
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.disc-chip input:checked + span {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
}

.disc-chip--all span {
    border-style: dashed;
}

.form-submit {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 162, 224, 0.4);
}

.form-submit .fa-whatsapp {
    font-size: 1.25rem;
}

.form-message {
    margin-top: 12px;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

/* ===== FOOTER ===== */
.footer {
    padding: 44px 0 22px;
    background: #020d14;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo-img {
    height: 40px;
    opacity: 0.85;
    margin-bottom: 12px;
}

.footer-brand-text {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* Contato column: icon + text rows */
.footer-contact a,
.footer-contact-static {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.footer-contact-static {
    cursor: default;
}

.footer-contact a i,
.footer-contact-static i {
    width: 16px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(56, 189, 248, 0.55);
    transition: var(--transition);
    flex-shrink: 0;
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-contact a:hover i {
    color: var(--color-primary);
}

/* Small badges under the logo/brand text */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.07);
    border: 1px solid rgba(56, 189, 248, 0.15);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.footer-badge i {
    color: rgba(56, 189, 248, 0.7);
    font-size: 0.7rem;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.05rem;
    transition: all 0.22s ease;
}

.footer-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -8px rgba(221, 42, 123, 0.55);
}

.footer-social a[aria-label="LinkedIn"]:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -8px rgba(10, 102, 194, 0.55);
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    cursor: pointer;
    font-size: 1.8rem;
    color: #fff;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO SOCIAL PROOF LINE ===== */
/* ===== SECTION CTA (Intermediate CTAs) ===== */
.section-cta {
    margin-top: 48px;
    padding-top: 16px;
}

.section-cta .btn-primary {
    font-size: 0.9rem;
    padding: 14px 32px;
    text-transform: none;
}

/* ===== MAP STYLES ===== */
.map-wrapper {
    position: relative;
    margin: 48px auto;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 10;
    background: transparent;
}

.map-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: transparent;
}

@media (max-width: 640px) {
    .map-wrapper {
        aspect-ratio: 4 / 5;
        margin: 32px auto;
    }
}

/* ===== PORTFOLIO UNITS BADGE ===== */
.portfolio-units {
    display: inline-block;
    background: rgba(0, 162, 224, 0.1);
    color: var(--color-primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-left: 6px;
}

/* ===== FORM URGENCY ===== */
.form-urgency {
    text-align: center;
    margin-top: 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

.form-urgency i {
    color: #f59e0b;
    margin-right: 4px;
}

/* ===== WHATSAPP FLOAT TOOLTIP ===== */
.whatsapp-float::after {
    content: 'Agendar reunião pelo WhatsApp';
    position: absolute;
    right: 70px;
    background: white;
    color: #333;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.whatsapp-float:hover::after {
    opacity: 1;
}

/* ===== SECTION SPACING NORMALIZATION ===== */
section {
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-visual {
        display: flex;
        margin-top: 8px;
    }

    .hero-cta-card {
        max-width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .method-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .disc-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .disc-expand-inner {
        padding: 28px 22px;
    }

    .national-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card--featured {
        grid-template-columns: 1fr;
    }

    .testimonial-video video {
        min-height: 0;
        max-height: 70vh;
        object-fit: contain;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(4, 31, 48, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* Respiro entre seções: 100px+100px = 200px de vazio no celular */
    .about,
    .methodology,
    .disciplines,
    .national,
    .portfolio,
    .testimonials,
    .cta-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 14px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
        line-height: 1.65;
    }

    .section-label {
        font-size: 0.68rem;
        margin-bottom: 12px;
    }

    .hero {
        padding: 90px 0 48px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.95rem;
        margin-bottom: 16px;
    }

    .hero-social-proof {
        font-size: 0.88rem;
        padding: 10px 12px;
    }

    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding-top: 20px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.72rem;
    }

    .hero-cta-card {
        padding: 28px 22px;
    }

    .hero-cta-title {
        font-size: 1.3rem;
    }

    .hero-cta-desc {
        font-size: 0.88rem;
    }

    .hero-buttons .btn-primary-xl {
        padding: 16px 22px;
        font-size: 0.95rem;
    }

    .hero-cta-meta {
        flex-direction: column;
        gap: 10px;
    }

    .method-steps {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .method-step {
        padding: 24px 22px;
    }

    .method-step-number {
        font-size: 2.4rem;
        margin-bottom: 6px;
    }

    /* Depoimentos: cards mantinham padding de desktop (36px) */
    .testimonial-card {
        padding: 24px 22px;
    }

    .testimonial-featured-body {
        padding: 24px 22px;
    }

    .testimonial-card--compact {
        padding: 20px 22px;
    }

    .testimonial-video video {
        max-height: 60vh;
    }

    .disc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .disc-expand-inner {
        padding: 22px 18px;
    }

    .disc-expand-head {
        gap: 14px;
    }

    .disc-expand-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .disc-expand-title {
        font-size: 1.2rem;
    }

    .disc-expand-item {
        flex-direction: column;
        gap: 8px;
    }

    .disc-cta-bar {
        padding: 18px 20px;
        gap: 14px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .national-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .proof-logos {
        gap: 8px;
    }

    .proof-logo {
        font-size: 0.82rem;
        padding: 8px 13px;
        letter-spacing: 0.04em;
    }

    .about-floating-card {
        right: 10px;
        bottom: -10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .disc-chip span {
        font-size: 0.8rem;
        padding: 9px 13px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .national-stat-number {
        font-size: 2rem;
    }
}
