/* Reset e Configurações Gerais Premium */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta Premium - Baseada em Roxo Profundo */
    --roxo-profundo: #2d1b69;
    --roxo-vibrante: #5d3fd3;
    --roxo-claro: #7c6ee4;
    --roxo-suave: #9a8ef0;
    --roxo-neon: #6b4de0;
    
    /* Tons complementares */
    --cinza-escuro: #1a1a2e;
    --cinza-medio: #2d3047;
    --cinza-claro: #f8f9ff;
    --branco: #ffffff;
    --off-white: #f5f7ff;
    
    /* Tons de destaque */
    --dourado: #d4af37;
    --dourado-claro: #f4e4a6;
    --ciano: #00d4ff;
    --verde-finance: #00c9a7;
    
    /* Tipografia */
    --fonte-titulo: 'Montserrat', sans-serif;
    --fonte-texto: 'Inter', sans-serif;
    
    /* Efeitos */
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --shadow-sm: 0 2px 10px rgba(45, 27, 105, 0.1);
    --shadow-md: 0 5px 20px rgba(45, 27, 105, 0.15);
    --shadow-lg: 0 15px 40px rgba(45, 27, 105, 0.2);
    --shadow-xl: 0 25px 60px rgba(45, 27, 105, 0.25);
    --gradient-primary: linear-gradient(135deg, var(--roxo-profundo) 0%, var(--roxo-vibrante) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--roxo-vibrante) 0%, var(--roxo-neon) 100%);
}

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

body {
    font-family: var(--fonte-texto);
    font-weight: 400;
    line-height: 1.7;
    color: var(--cinza-medio);
    background-color: var(--branco);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(93, 63, 211, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(107, 77, 224, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(45, 27, 105, 0.03) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

section {
    padding: 100px 0;
    position: relative;
}

.highlight {
    background: linear-gradient(45deg, var(--dourado), #f4e4a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
    border-radius: 4px;
}

/* Tipografia Premium */
h1, h2, h3, h4 {
    font-family: var(--fonte-titulo);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3.2rem;
    color: var(--cinza-escuro);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--cinza-medio);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--branco);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Botões Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--fonte-titulo);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--branco);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--roxo-vibrante);
    border: 2px solid var(--roxo-vibrante);
}

.btn-secondary:hover {
    background-color: var(--roxo-vibrante);
    color: var(--branco);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Botão Grande */
.btn-large {
    padding: 20px 50px;
    font-size: 1.1rem;
    min-width: 300px;
}

/* Header Premium */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 30px rgba(45, 27, 105, 0.08);
    transition: var(--transition);
    padding: 15px 0;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 25px rgba(45, 27, 105, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo img {
    height: 65px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}

.nav-link {
    text-decoration: none;
    color: var(--cinza-escuro);
    font-weight: 500;
    padding: 12px 18px;
    transition: var(--transition);
    position: relative;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--roxo-vibrante);
    background-color: rgba(93, 63, 211, 0.05);
}

.nav-link i {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Seletor de Idioma Premium */
.language-selector {
    position: relative;
    margin-left: 10px;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--roxo-vibrante);
    padding: 10px 16px;
    border-radius: 6px;
    background-color: rgba(93, 63, 211, 0.08);
    transition: var(--transition);
}

.current-language:hover {
    background-color: rgba(93, 63, 211, 0.12);
}

.current-language i {
    font-size: 0.9rem;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--branco);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 120px;
    display: none;
    z-index: 10;
    overflow: hidden;
    border: 1px solid rgba(93, 63, 211, 0.1);
}

.language-selector:hover .language-dropdown {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--cinza-medio);
    transition: var(--transition);
    border-bottom: 1px solid rgba(93, 63, 211, 0.05);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background-color: rgba(93, 63, 211, 0.05);
    color: var(--roxo-vibrante);
}

/* Menu Hamburguer Premium */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.bar {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--cinza-escuro);
    border-radius: 3px;
    transition: var(--transition);
}

.bar:nth-child(1) {
    top: 0;
}

.bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.bar:nth-child(3) {
    bottom: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}

/* =========================== */
/* HERO SECTION - FUNDO ROXO FIXO */
/* =========================== */

.hero-section {
    background: linear-gradient(135deg, 
        #1a0b4e 0%, 
        #2d1b69 50%, 
        #3a1f8c 100%);
    padding: 180px 0 120px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    animation: floatElement 25s infinite linear;
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.05),
        0 0 40px rgba(93, 63, 211, 0.1);
}

.floating-element:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 30s;
}

.floating-element:nth-child(2) {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 12%;
    animation-delay: -7s;
    animation-duration: 35s;
    background: rgba(212, 175, 55, 0.04);
    box-shadow: 
        inset 0 0 30px rgba(212, 175, 55, 0.05),
        0 0 50px rgba(212, 175, 55, 0.1);
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 20%;
    animation-delay: -12s;
    animation-duration: 28s;
}

.floating-element:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 25%;
    animation-delay: -18s;
    animation-duration: 32s;
}

.floating-element:nth-child(5) {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 30%;
    animation-delay: -25s;
    animation-duration: 40s;
}

@keyframes floatElement {
    0% { 
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-30px) rotate(90deg) scale(1.1);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(0) rotate(180deg) scale(1);
        opacity: 0.3;
    }
    75% { 
        transform: translateY(30px) rotate(270deg) scale(0.9);
        opacity: 0.2;
    }
    100% { 
        transform: translateY(0) rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

.financial-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.02) 95%),
        linear-gradient(0deg, transparent 95%, rgba(255,255,255,0.02) 95%),
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.02) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(93,63,211,0.04) 2px, transparent 2px),
        radial-gradient(circle at 60% 40%, rgba(212,175,55,0.03) 2px, transparent 2px);
    background-size: 
        50px 50px,
        50px 50px,
        100px 100px,
        80px 80px,
        120px 120px,
        150px 150px;
    opacity: 0.3;
    filter: blur(0.5px);
    z-index: 1;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--branco);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--branco);
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 160px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-stats .stat-number,
.hero-stats .stat-label {
    color: #ffffff !important;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--branco);
    font-size: 1.2rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.scroll-indicator a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-15px) translateX(-50%);
    }
    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* =========================== */
/* SERVIÇOS PREMIUM - CORRIGIDO */
/* =========================== */

.servicos-section {
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 90% 10%, rgba(93, 63, 211, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 10% 90%, rgba(107, 77, 224, 0.03) 0%, transparent 30%);
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .section-title {
    margin-bottom: 20px;
}

.section-header .section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--cinza-medio);
    opacity: 0.9;
}

/* Badge "Nossas Especialidades" */
.servicos-specialties {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 50px;
    position: relative;
    padding-left: 0;
}

.specialties-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--branco);
    padding: 12px 25px;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.specialties-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--roxo-vibrante), rgba(93, 63, 211, 0.2));
    position: relative;
}

.specialties-line::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--roxo-vibrante);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--roxo-vibrante);
}

/* Grid de Serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.servico-card {
    height: 100%;
}

.servico-card-inner {
    background-color: var(--branco);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(93, 63, 211, 0.05);
}

.servico-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.servico-card:hover .servico-card-inner {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.servico-icon {
    font-size: 2.8rem;
    color: var(--roxo-vibrante);
    margin-bottom: 1.5rem;
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(93, 63, 211, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.servico-title {
    font-size: 1.6rem;
    color: var(--cinza-escuro);
    margin-bottom: 1rem;
}

.servico-text {
    color: var(--cinza-medio);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.servico-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.servico-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--cinza-medio);
    font-size: 0.95rem;
    line-height: 1.4;
}

.servico-features i {
    color: var(--verde-finance);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.servico-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--roxo-vibrante);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(93, 63, 211, 0.1);
}

.servico-link:hover {
    gap: 12px;
    color: var(--roxo-profundo);
}

/* Badge do Serviço */
.servico-badge {
    display: inline-block;
    background: rgba(93, 63, 211, 0.1);
    color: var(--roxo-vibrante);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* =========================== */
/* SEÇÃO NÚMEROS - FUNDO ROXO */
/* =========================== */

.numeros-section {
    background: linear-gradient(135deg, 
        #1a0b4e 0%, 
        #2d1b69 50%, 
        #3a1f8c 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.numeros-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/pattern.svg') repeat;
    opacity: 0.05;
    z-index: 1;
}

.numeros-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.numeros-section .section-title,
.numeros-section .section-subtitle,
.numeros-section .numero-label,
.numeros-section .numero-desc,
.numeros-section .numero-value,
.numeros-section .numero-symbol {
    color: #ffffff !important;
}

.numeros-section .section-title::after {
    background: #ffffff !important;
}

.numeros-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.numero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.numero-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.numero-icon {
    font-size: 2.5rem;
    color: var(--dourado-claro);
    margin-bottom: 1.5rem;
}

.numero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.numero-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1;
    margin-bottom: 5px;
}

.numero-symbol {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 10px;
}

.numero-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 10px;
}

.numero-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.5;
}

/* =========================== */
/* DIFERENCIAIS PREMIUM */
/* =========================== */

.diferenciais-section {
    background-color: var(--off-white);
    position: relative;
}

.diferenciais-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.diferencial-main {
    background: var(--branco);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(93, 63, 211, 0.1);
    position: relative;
    overflow: hidden;
}

.diferencial-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.diferencial-badge {
    display: inline-block;
    background: rgba(93, 63, 211, 0.1);
    color: var(--roxo-vibrante);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.diferencial-title {
    font-size: 2.2rem;
    color: var(--cinza-escuro);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.diferencial-text {
    font-size: 1.1rem;
    color: var(--cinza-medio);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.diferencial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 2.5rem;
}

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

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--roxo-vibrante);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--cinza-medio);
    line-height: 1.4;
}

.diferenciais-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.diferencial-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--branco);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(93, 63, 211, 0.05);
}

.diferencial-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(93, 63, 211, 0.1);
}

.diferencial-icon {
    width: 50px;
    height: 50px;
    background: rgba(93, 63, 211, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--roxo-vibrante);
    font-size: 1.3rem;
}

.diferencial-content h4 {
    font-size: 1.2rem;
    color: var(--cinza-escuro);
    margin-bottom: 8px;
}

.diferencial-content p {
    font-size: 0.95rem;
    color: var(--cinza-medio);
    margin-bottom: 0;
    line-height: 1.5;
}

/* =========================== */
/* SEÇÃO SOBRE - CORRIGIDA E OTIMIZADA */
/* =========================== */

.sobre-section {
    background-color: var(--off-white);
    position: relative;
}

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

.sobre-text {
    padding-right: 30px;
}

.sobre-text .section-badge {
    margin-bottom: 20px;
}

.sobre-text .section-title {
    text-align: left;
    margin-bottom: 30px;
    display: block;
}

.sobre-text .section-title::after {
    left: 0;
    transform: none;
}

.sobre-paragraphs {
    margin-bottom: 40px;
}

.sobre-paragraphs p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--cinza-medio);
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

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

.feature i {
    color: var(--roxo-vibrante);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.2rem;
    color: var(--cinza-escuro);
    margin-bottom: 8px;
}

.feature p {
    font-size: 1rem;
    color: var(--cinza-medio);
    margin-bottom: 0;
}

/* Cards da direita */
.sobre-cards {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 400px;
}

.sobre-card {
    background: var(--branco);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(93, 63, 211, 0.1);
    display: flex;
    gap: 20px;
    align-items: center;
}

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

.sobre-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sobre-card-content h4 {
    font-size: 1.3rem;
    color: var(--cinza-escuro);
    margin-bottom: 8px;
    font-weight: 600;
}

.sobre-card-content p {
    font-size: 1rem;
    color: var(--cinza-medio);
    margin-bottom: 0;
    line-height: 1.5;
}

/* =========================== */
/* SEÇÃO CONTATO - CORRIGIDA E OTIMIZADA */
/* =========================== */

.contato-section {
    background-color: var(--off-white);
    padding: 100px 0;
}

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

/* Coluna de informações */
.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--branco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(93, 63, 211, 0.05);
    transition: var(--transition);
    width: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-header {
    background: var(--gradient-primary);
    padding: 25px;
    color: var(--branco);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: var(--branco);
}

.info-body {
    padding: 25px;
}

.info-body p {
    margin-bottom: 10px;
    color: var(--cinza-medio);
    line-height: 1.6;
}

.info-body strong {
    color: var(--cinza-escuro);
    font-weight: 600;
}

.info-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(93, 63, 211, 0.1);
    border-radius: 8px;
    color: var(--roxo-vibrante);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--roxo-vibrante);
    color: var(--branco);
    transform: translateY(-3px);
}

.info-flags {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.flag {
    font-size: 1.8rem;
    display: inline-block;
    transition: var(--transition);
}

.flag:hover {
    transform: scale(1.2);
}

/* Container do formulário */
.contato-form-container {
    background: var(--branco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(93, 63, 211, 0.1);
    height: 100%;
}

.form-header {
    background: linear-gradient(135deg, #f8f7ff, #ffffff);
    padding: 30px;
    border-bottom: 1px solid rgba(93, 63, 211, 0.1);
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--cinza-escuro);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-header h3 i {
    color: var(--roxo-vibrante);
}

.form-header p {
    color: var(--cinza-medio);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contato-form {
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cinza-escuro);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--roxo-vibrante);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(93, 63, 211, 0.2);
    border-radius: 8px;
    font-family: var(--fonte-texto);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--branco);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--roxo-vibrante);
    box-shadow: 0 0 0 3px rgba(93, 63, 211, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235d3fd3' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.form-actions {
    margin-top: 30px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--cinza-medio);
    text-align: center;
    margin-top: 15px;
    opacity: 0.8;
}

.form-feedback {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
    font-weight: 600;
}

.form-feedback.success {
    background-color: rgba(0, 201, 167, 0.1);
    color: #006a5b;
    border: 1px solid rgba(0, 201, 167, 0.2);
    display: block;
}

.form-feedback.error {
    background-color: rgba(255, 77, 79, 0.1);
    color: #cc0000;
    border: 1px solid rgba(255, 77, 79, 0.2);
    display: block;
}

/* =========================== */
/* FOOTER PREMIUM */
/* =========================== */

.footer {
    background: var(--cinza-escuro);
    color: var(--branco);
    padding: 70px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

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

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo img {
    width: 220px;
    height: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-info strong {
    color: var(--branco);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    color: var(--branco);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--roxo-vibrante);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--roxo-suave);
    gap: 12px;
}

.footer-column a i {
    font-size: 0.8rem;
    opacity: 0.7;
}

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

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--branco);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--roxo-vibrante);
    transform: translateY(-3px);
}

/* =========================== */
/* AJUSTES GLOBAIS */
/* =========================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-badge {
    margin-bottom: 15px;
    display: inline-block;
}

.section-header .section-title {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header .section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--cinza-medio);
    opacity: 0.9;
    margin-bottom: 0;
}

.numeros-section .section-header .section-title::after {
    background: #ffffff;
}

/* Remover qualquer overlay escuro */
.bg-overlay,
.hero-section::before {
    display: none !important;
}

/* =========================================== */
/* CORREÇÃO DA SEÇÃO DIFERENCIAIS (textos pretos) */
/* =========================================== */

/* Garantir textos pretos na seção diferenciais */
.diferencial-stat .stat-value,
.diferencial-stat .stat-label {
    color: var(--cinza-escuro) !important;
}

.diferencial-main {
    background: var(--branco);
}

.diferencial-main .diferencial-title,
.diferencial-main .diferencial-text,
.diferencial-main .diferencial-badge {
    color: var(--cinza-escuro) !important;
}

.diferencial-badge {
    background: rgba(93, 63, 211, 0.1);
    color: var(--roxo-vibrante) !important;
}

/* Correção específica para textos pretos em diferenciais */
.diferencial-stat {
    text-align: center;
}

.diferencial-stat .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cinza-escuro) !important;
    margin-bottom: 5px;
}

.diferencial-stat .stat-label {
    font-size: 0.85rem;
    color: var(--cinza-medio) !important;
    line-height: 1.4;
}

/* Garantir que o card principal tenha fundo branco */
.diferencial-main {
    background: var(--branco) !important;
    color: var(--cinza-escuro) !important;
}

.diferencial-main .diferencial-title {
    color: var(--cinza-escuro) !important;
}

.diferencial-main .diferencial-text {
    color: var(--cinza-medio) !important;
}

/* =========================== */
/* SEÇÃO MÉTODO C.A.P.T.A.R.® */
/* =========================== */

.metodo-section {
    background-color: var(--branco);
    position: relative;
    padding: 120px 0;
}

.metodo-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.metodo-quote {
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.05), rgba(93, 63, 211, 0.05));
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--roxo-vibrante);
    position: relative;
}

.metodo-quote i:first-child {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--roxo-vibrante);
    opacity: 0.3;
}

.metodo-quote p {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--cinza-escuro);
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.5;
}

.metodo-description p {
    font-size: 1.1rem;
    color: var(--cinza-medio);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.metodo-stat {
    text-align: center;
    padding: 25px;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid rgba(93, 63, 211, 0.1);
}

.metodo-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--roxo-vibrante);
    margin-bottom: 8px;
    line-height: 1;
}

.metodo-stat .stat-label {
    font-size: 0.95rem;
    color: var(--cinza-medio);
    line-height: 1.4;
}

/* CTA Final - APENAS UM BOTÃO GRANDE */
.metodo-cta {
    background: linear-gradient(135deg, var(--roxo-profundo), var(--roxo-vibrante));
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-top: 60px;
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.metodo-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/pattern.svg') repeat;
    opacity: 0.05;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.cta-content h3 {
    font-size: 2.2rem;
    color: var(--branco);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Botão único e grande */
.metodo-cta .btn-primary {
    background: var(--dourado);
    border: none;
    color: var(--cinza-escuro);
    font-weight: 600;
    padding: 20px 50px;
    font-size: 1.1rem;
    min-width: 300px;
}

.metodo-cta .btn-primary:hover {
    background: var(--dourado-claro);
    transform: translateY(-3px);
}

/* Remover botão secundário */
.metodo-cta .btn-secondary {
    display: none;
}

/* =========================== */
/* RESPONSIVIDADE PREMIUM */
/* =========================== */

@media (max-width: 1200px) {
    .section-title {
        font-size: 2.8rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .sobre-content,
    .diferenciais-content,
    .contato-content {
        gap: 50px;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Responsividade do Método */
    .metodo-intro {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .sobre-content,
    .diferenciais-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-text {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diferencial-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Ajustes para sobre */
    .sobre-text {
        padding-right: 0;
    }
    
    .sobre-text .section-title {
        text-align: center;
    }
    
    .sobre-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Ajustes para contato */
    .contato-info {
        order: 2;
    }
    
    .contato-form-container {
        order: 1;
    }
    
    /* Responsividade do Método */
    .metodo-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .metodo-cta {
        padding: 40px 30px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: var(--branco);
        width: 100%;
        text-align: left;
        transition: 0.4s;
        box-shadow: var(--shadow-xl);
        padding: 30px;
        z-index: 999;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 18px 0;
        display: flex;
        width: 100%;
        border-bottom: 1px solid rgba(93, 63, 211, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .language-selector {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    
    .current-language {
        width: 100%;
        justify-content: center;
    }
    
    .language-dropdown {
        width: 100%;
        right: auto;
        left: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 140px;
        padding: 15px 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .diferencial-stats {
        grid-template-columns: 1fr;
    }
    
    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .servicos-specialties {
        margin-bottom: 40px;
    }
    
    .specialties-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* Ajustes para seção sobre em mobile */
    .sobre-content {
        gap: 40px;
    }
    
    .cards-container {
        max-width: 100%;
    }
    
    .sobre-card {
        padding: 20px;
    }
    
    .sobre-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Ajustes para contato */
    .contato-section {
        padding: 70px 0;
    }
    
    .info-card {
        width: 100%;
    }
    
    /* Responsividade do Método */
    .metodo-section {
        padding: 80px 0;
    }
    
    .metodo-stats {
        grid-template-columns: 1fr;
    }
    
    .metodo-cta .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .numeros-grid {
        grid-template-columns: 1fr;
    }
    
    .numero-value {
        font-size: 2.8rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .servicos-section {
        padding: 70px 0;
    }
    
    .section-header .section-title {
        font-size: 2rem;
    }
    
    .section-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .specialties-badge {
        padding: 8px 15px;
        font-size: 0.85rem;
        border-radius: 20px 0 0 20px;
    }
    
    .sobre-card {
        flex-direction: column;
        text-align: center;
    }
    
    .sobre-card-icon {
        margin-bottom: 15px;
    }
    
    .sobre-features {
        gap: 20px;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature i {
        margin-top: 0;
    }
    
    /* Responsividade do Método */
    .metodo-quote {
        padding: 25px;
    }
    
    .metodo-quote p {
        font-size: 1.2rem;
    }
    
    .metodo-cta .btn-primary {
        min-width: 250px;
        padding: 18px 30px;
        font-size: 1rem;
    }
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================== */
/* MÉTODO C.A.P.T.A.R. OTIMIZADO */
/* =========================== */

.metodo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 60px 0;
}

.metodo-card {
    background: var(--branco);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(93, 63, 211, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.metodo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.metodo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.etapa-number {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.etapa-letter {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--roxo-vibrante);
    line-height: 1;
    margin-top: -5px;
    flex-shrink: 0;
}

.card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--cinza-escuro);
    flex-grow: 1;
}

.etapa-tag {
    background: rgba(93, 63, 211, 0.1);
    color: var(--roxo-vibrante);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-top: 5px;
}

.card-desc {
    color: var(--cinza-medio);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

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

.card-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

.card-features i {
    color: var(--roxo-vibrante);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.card-expand-btn {
    background: transparent;
    border: 1px solid rgba(93, 63, 211, 0.2);
    color: var(--roxo-vibrante);
    padding: 10px 20px;
    border-radius: 8px;
    font-family: var(--fonte-titulo);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}

.card-expand-btn:hover {
    background: rgba(93, 63, 211, 0.05);
    border-color: var(--roxo-vibrante);
}

/* Modal de Detalhes */
.etapa-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--branco);
    border-radius: 20px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-xl);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(93, 63, 211, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--roxo-vibrante);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 11;
}

.modal-close:hover {
    background: var(--roxo-vibrante);
    color: var(--branco);
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, var(--roxo-profundo), var(--roxo-vibrante));
    color: var(--branco);
    padding: 40px;
    border-radius: 20px 20px 0 0;
}

.modal-etapa-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.modal-letter {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-right: 10px;
    flex-shrink: 0;
}

.modal-header h3 {
    font-size: 2rem;
    color: var(--branco);
    margin-bottom: 10px;
}

.modal-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--branco);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
}

.modal-body {
    padding: 40px;
}

.modal-quote {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(244, 228, 166, 0.05));
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--dourado);
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.modal-quote i {
    color: var(--dourado);
    font-size: 1.5rem;
    margin-top: 3px;
}

.modal-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--cinza-escuro);
    margin-bottom: 0;
    font-weight: 500;
}

.modal-full-desc p {
    font-size: 1.1rem;
    color: var(--cinza-medio);
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.modal-feature {
    background: var(--off-white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(93, 63, 211, 0.1);
}

.modal-feature i {
    font-size: 1.8rem;
    color: var(--roxo-vibrante);
    margin-bottom: 15px;
}

.modal-feature span {
    display: block;
    color: var(--cinza-medio);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsividade do Método Otimizado */
@media (max-width: 992px) {
    .metodo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .metodo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content {
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 30px;
    }
    
    .modal-body {
        padding: 30px;
    }
    
    .modal-etapa-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .modal-features {
        grid-template-columns: 1fr;
    }
    
    .modal-header h3 {
        font-size: 1.6rem;
    }
}

/* =========================== */
/* CORREÇÃO DOS STATS DO MÉTODO - TEXTO PRETO */
/* =========================== */

.metodo-stat .stat-number,
.metodo-stat .stat-label {
    color: var(--cinza-escuro) !important;
}

/* Garantir que o fundo dos stats seja branco */
.metodo-stat {
    background: var(--branco) !important;
    border: 1px solid rgba(93, 63, 211, 0.15) !important;
}

/* Se ainda estiver branco, adicione esta regra mais específica */
.metodo-intro .metodo-stat .stat-number,
.metodo-intro .metodo-stat .stat-label {
    color: var(--cinza-escuro) !important;
}

/* =========================== */
/* CABEÇALHO CENTRALIZADO DO MÉTODO */
/* =========================== */

.metodo-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.metodo-header-centered .section-title {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.metodo-header-centered .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.metodo-subtitle-centered {
    font-size: 1.3rem;
    color: var(--cinza-medio);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.85;
    line-height: 1.6;
}

/* CORREÇÃO DE EMERGÊNCIA PARA STATS */
.metodo-intro .metodo-stat {
    background: white !important;
}

.metodo-intro .metodo-stat .stat-number {
    color: #1a1a2e !important; /* Preto direto */
    font-weight: 800;
}

.metodo-intro .metodo-stat .stat-label {
    color: #2d3047 !important; /* Cinza escuro direto */
}

/* =========================== */
/* ESTILOS PARA CONSULTA DE CNPJ */
/* =========================== */

.cnpj-field-container {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.cnpj-field-container input {
    flex: 1;
}

.cnpj-btn {
    background: var(--roxo-vibrante);
    color: var(--branco);
    border: none;
    border-radius: 8px;
    padding: 0 20px;
    font-family: var(--fonte-titulo);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cnpj-btn:hover:not(:disabled) {
    background: var(--roxo-profundo);
    transform: translateY(-2px);
}

.cnpj-btn:disabled {
    background: var(--cinza-medio);
    cursor: not-allowed;
    opacity: 0.7;
}

.cnpj-feedback {
    margin-top: 10px;
    min-height: 20px;
}

.cnpj-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--roxo-vibrante);
    font-size: 0.9rem;
    font-weight: 500;
}

.cnpj-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cnpj-success {
    color: var(--verde-finance);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 201, 167, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 3px solid var(--verde-finance);
    margin-top: 10px;
}

.cnpj-error {
    color: #e74c3c;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(231, 76, 60, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 3px solid #e74c3c;
    margin-top: 10px;
}

.cnpj-warning {
    color: var(--dourado);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 3px solid var(--dourado);
    margin-top: 10px;
}

.cnpj-cache-info {
    font-size: 0.8rem;
    color: var(--cinza-medio);
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cnpj-cache-info i {
    color: var(--roxo-suave);
}

.tooltip-icon {
    color: var(--roxo-suave);
    margin-left: 5px;
    cursor: help;
    position: relative;
}

.tooltip-icon:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cinza-escuro);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
    box-shadow: var(--shadow-md);
}