/* =============================================
   MINDCORP WEB — Design System & Main Styles
   Inspired by Agero template, customized for Mindcorp
   ============================================= */

/* === CSS Custom Properties === */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F2F2F2;
    --bg-dark: #111111;
    --bg-dark-card: #1a1a1a;
    --text-primary: #111111;
    --text-secondary: #666666;
    --text-light: #999999;
    --text-on-dark: #FFFFFF;
    --text-on-dark-muted: #aaaaaa;
    --accent: #FF8353;
    --accent-hover: #ff6a33;
    --accent-glow: rgba(255, 131, 83, 0.3);
    --gray-plastic: #E1E4E8;
    --border-light: rgba(0, 0, 0, 0.08);
    --border-dark: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px var(--accent-glow);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 100px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --nav-height: 72px;
}

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

html {
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--accent);
}

/* === Top Bar === */
.top-bar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 0 var(--radius-full) var(--radius-full);
    color: var(--text-on-dark);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.top-bar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    top: 0;
    padding-top: 8px;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.navbar.scrolled .nav-container {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-logo-img {
    height: 32px;
    width: auto;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width var(--transition-base);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--bg-dark);
    color: var(--text-on-dark);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    position: relative;
    background: var(--bg-secondary);
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.04);
    letter-spacing: -0.02em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: 10%;
    right: 10%;
}

.hero-glow-2 {
    width: 300px;
    height: 300px;
    background: #7c5cff;
    bottom: 20%;
    left: 10%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    margin-bottom: 32px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.hero-avatars {
    display: flex;
}

.avatar-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--bg-primary);
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 32px;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-cta {
    margin-bottom: 16px;
}

.hero-micro {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

/* === Buttons === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--bg-dark);
    color: var(--text-on-dark);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === Floating Icons no Hero === */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1; /* Atrás do hero-content */
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    width: 64px;
    height: 64px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    will-change: transform;
}

.floating-icon.tech-icon-1 { top: 15%; left: 10%; }
.floating-icon.tech-icon-2 { top: 25%; right: 15%; }
.floating-icon.tech-icon-3 { bottom: 20%; left: 20%; }
.floating-icon.tech-icon-4 { bottom: 30%; right: 10%; }
.floating-icon.tech-icon-5 { top: 50%; left: 5%; }

/* === Cross Marquee Section === */
.cross-marquee-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.marquee-track-container {
    position: absolute;
    width: 250vw;
    left: 50%;
    top: 50%;
    transform-origin: center;
}

.rotate-left {
    transform: translate(-50%, -50%) rotate(-5deg);
}

.rotate-right {
    transform: translate(-50%, -50%) rotate(5deg);
}

.marquee-track {
    white-space: nowrap;
    padding: 24px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    will-change: transform;
}

.marquee-cross-1 {
    background: var(--accent);
    color: var(--text-on-dark);
}

.marquee-cross-2 {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.marquee-content {
    display: inline-flex;
    gap: 32px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.marquee-sep {
    opacity: 0.5;
}

/* === Hello Section (Agero Style) === */
.hello-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.hello-tag-container {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.hello-tag {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent);
    font-style: italic;
}

.hello-title {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto 50px;
}

.hello-title .text-fade {
    color: var(--text-light);
}

.hello-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.hello-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #6c757d;
    color: var(--text-on-dark);
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 500;
    transition: all var(--transition-base);
    border: none;
}

.hello-badge:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
}

/* === Stacked Stats Section === */
.stats-stacked-section {
    position: relative;
    background: var(--bg-primary);
    padding: 140px 0;
    overflow: visible;
}

.stats-stacked-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Important for sticky to work on one side */
    width: 100%;
    gap: 60px;
    position: relative;
}

.stats-left-pinned {
    flex: 1;
    max-width: 450px;
    position: sticky;
    top: 140px; /* trava a esquerda enquanto a direita rola */
}

.stats-left-pinned .section-tag {
    color: var(--accent);
}

.stats-left-pinned p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 16px;
}

.stats-right-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 450px;
    padding-bottom: 50vh; /* dá espaço para os últimos cartões fixarem antes da próxima seção */
}

.stacked-card-stat {
    position: sticky;
    /* Cada cartão usa offset para mostrar a borda de cima empilhada */
    top: calc(140px + var(--card-index) * 20px);
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 30px 40px;
    width: 100%;
    text-align: center;
    box-shadow: 0 -15px 40px -10px rgba(0,0,0,0.06);
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.stacked-card-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 -15px 50px -5px rgba(0,0,0,0.1);
}

.stacked-card-stat.tech {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    border-color: var(--border-dark);
}

.stacked-card-stat h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.stacked-card-stat.tech h3 {
    font-size: 1.6rem;
    color: var(--text-on-dark);
}

.stacked-card-stat span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.stacked-card-stat.tech span {
    color: var(--accent);
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

/* === Portfólio (Horizontal Live Scroll) === */
.portfolio-section {
    position: relative;
    background: var(--bg-dark); /* Contrast section! */
    color: var(--text-on-dark);
    overflow: hidden;
}

.portfolio-sticky {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
    position: absolute;
    top: 10%;
    left: 0;
}
.portfolio-header .section-tag {
    color: var(--accent);
}
.portfolio-header .section-title {
    color: var(--text-on-dark);
}

.portfolio-track {
    display: flex;
    gap: 60px;
    padding: 0 20vw; /* Começa no centro esquerdo e termina centralizado */
    align-items: center;
    will-change: transform;
}

.portfolio-card {
    flex: 0 0 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-decoration: none;
    color: var(--text-on-dark);
    transition: transform var(--transition-base);
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-iframe-wrapper {
    position: relative;
    width: 500px;
    height: 312px;
    border-radius: var(--radius-lg);
    background: #000;
    border: 1px solid var(--border-dark);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.portfolio-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 1600px;
    height: 1000px;
    transform: scale(0.3125); /* 500/1600 */
    transform-origin: top left;
    border: none;
    pointer-events: none; /* Deixa rodar no fundo, mas não sequestra o scroll do mouse */
    user-select: none;
}

.portfolio-iframe-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    z-index: 2;
    transition: opacity 0.3s;
    opacity: 0.8;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.portfolio-iframe-overlay span {
    color: var(--text-on-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    background: rgba(255,131,83,0.2);
    border: 1px solid var(--accent);
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
}
.portfolio-card:hover .portfolio-iframe-overlay {
    opacity: 0; /* Revela o iFrame vivo no Hover */
}

.portfolio-card-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.portfolio-card-info p {
    color: var(--text-on-dark-muted);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .portfolio-card { flex: 0 0 320px; }
    .portfolio-iframe-wrapper { width: 320px; height: 200px; }
    .portfolio-iframe-wrapper iframe {
        width: 1024px; height: 640px; transform: scale(0.3125);
    }
}

/* === Soluções (Accordion style like the reference) === */
.solucoes-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.solucoes-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.solucao-card {
    background: var(--bg-primary);
    overflow: hidden;
}

.solucao-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.solucao-header:hover {
    background: var(--bg-secondary);
}

.solucao-index {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 28px;
}

.solucao-title {
    font-size: 1.15rem;
    font-weight: 700;
    flex: 1;
    letter-spacing: -0.01em;
}

.solucao-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.solucao-card.active .solucao-toggle {
    background: var(--accent);
    color: var(--text-on-dark);
    transform: rotate(45deg);
}

.solucao-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    padding: 0 32px;
}

.solucao-card.active .solucao-body {
    max-height: 400px;
    padding: 0 32px 28px;
}

.solucao-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.solucao-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.solucao-tags span {
    padding: 4px 12px;
    background: rgba(255, 131, 83, 0.1);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.solucao-quote {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-light);
    border-left: 3px solid var(--accent);
    padding-left: 16px;
    margin: 0;
}

/* === Processo === */
.processo-section {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.processo-section .section-tag {
    color: var(--text-on-dark-muted);
}

.processo-section .section-title {
    color: var(--text-on-dark);
}

.processo-timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.processo-step {
    display: flex;
    gap: 32px;
    padding: 40px 0;
    position: relative;
    border-bottom: 1px solid var(--border-dark);
}

.processo-step:last-child {
    border-bottom: none;
}

.processo-number {
    font-size: 3rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
    line-height: 1;
    min-width: 80px;
}

.processo-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-on-dark);
}

.processo-content p {
    font-size: 0.9rem;
    color: var(--text-on-dark-muted);
    line-height: 1.7;
}

/* === Depoimentos === */
.depoimentos-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.depoimentos-carousel {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
}

.depoimento-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow);
    pointer-events: none;
    text-align: center;
    padding: 40px;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

.depoimento-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.depoimento-number {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
}

.depoimento-text {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 24px;
    border: none;
    padding: 0;
}

.depoimento-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.depoimentos-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: var(--radius-full);
}

/* === Pricing === */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px 36px;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card-featured {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--accent), transparent);
    opacity: 0.15;
    pointer-events: none;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--text-on-dark);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 131, 83, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}

.pricing-card-featured .pricing-icon {
    background: rgba(255, 131, 83, 0.2);
}

.pricing-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pricing-card-featured .pricing-desc {
    color: var(--text-on-dark-muted);
}

.pricing-divider {
    height: 1px;
    background: var(--border-light);
    margin-bottom: 24px;
}

.pricing-card-featured .pricing-divider {
    background: var(--border-dark);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
}

.pricing-card-featured .pricing-features li {
    color: var(--text-on-dark);
}

/* === FAQ === */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.faq-section .section-tag {
    color: var(--text-on-dark-muted);
}

.faq-section .section-title {
    color: var(--text-on-dark);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-dark);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-on-dark);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-chevron {
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-on-dark-muted);
    line-height: 1.7;
}

/* === CTA / Contact === */
.cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-dark);
}

.cta-bg-text {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(60px, 12vw, 160px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-on-dark);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 0.95rem;
    color: var(--text-on-dark-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.cta-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-on-dark-muted);
}

.cta-email a {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-email a:hover {
    text-decoration: underline;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-on-dark-muted);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    color: var(--text-on-dark);
    font-family: var(--font-family);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast);
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* === Footer === */
.footer {
    padding: 80px 0 32px;
    background: var(--bg-dark);
    color: var(--text-on-dark-muted);
    border-top: 1px solid var(--border-dark);
}

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

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-on-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-on-dark-muted);
    margin-bottom: 10px;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-dark);
    font-size: 0.8rem;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-clock {
    font-variant-numeric: tabular-nums;
}

.back-to-top {
    color: var(--accent);
    font-weight: 600;
    transition: opacity var(--transition-fast);
}

.back-to-top:hover {
    opacity: 0.7;
}

/* === Bottom Blur Mask (Sessões Entrando em Foco) === */
.bottom-blur-mask {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 998; /* Below top-bar/header but above content */
    pointer-events: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        background: var(--bg-primary);
        border-radius: var(--radius-lg);
        padding: 20px;
        flex-direction: column;
        gap: 12px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-light);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 24px 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .showcase-card:first-child {
        grid-column: span 2;
    }

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

    .stat-card {
        padding: 24px 16px;
    }

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

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

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

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

    .processo-step {
        flex-direction: column;
        gap: 12px;
    }

    .processo-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card:first-child {
        grid-column: span 1;
    }

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