/* =========================================
   DESIGN SYSTEM & VARIABLES (SEXY DARK BLUE)
   ========================================= */
:root {
    /* Color Palette Oficial & Neon extensions */
    --color-primary: #34438a; /* Azul um pouco menos intenso e mais equilibrado */
    --color-primary-light: #b0c4f4; /* Ajustado para acompanhar o novo tom */
    
    /* Cores estendidas para o Dark Mode "Sexy" */
    --color-bg-deep: #070a14; /* Azul marinho quase preto (fundo principal) */
    --color-bg-alt: #0a0f25; /* Fundo secundário */
    
    --color-glass-bg: rgba(164, 187, 242, 0.03);
    --color-glass-border: rgba(164, 187, 242, 0.15);
    
    --color-neon-blue: #3b82f6; /* Azul vibrante para brilhos e gradientes */
    
    /* Textos */
    --color-text: #e2e8f0; /* Texto principal claro */
    --color-text-dark: #ffffff; /* Títulos (Branco puro) */
    --color-text-light: #94a3b8; /* Textos secundários (Cinza azulado) */
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Spacing & Sizes */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    /* Shadows - Glow effects */
    --shadow-glow: 0 0 25px rgba(59, 130, 246, 0.3);
    --shadow-glow-strong: 0 0 40px rgba(59, 130, 246, 0.5);
    --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* =========================================
   RESET & GLOBAL
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-deep);
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg-deep);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Efeito de luz difusa no fundo global */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(164, 187, 242, 0.08) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.section-alt {
    background-color: rgba(10, 15, 37, 0.5);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

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

/* =========================================
   BUTTONS (Alta Conversão & Glow)
   ========================================= */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px; /* Bordas mais arredondadas para ar moderno */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-neon-blue) 0%, var(--color-primary) 100%);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-neon-blue) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow-strong);
    color: white;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary-light);
    border: 1px solid rgba(164, 187, 242, 0.5);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: rgba(164, 187, 242, 0.1);
    border-color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(164, 187, 242, 0.15);
}

.btn-block {
    width: 100%;
}

/* =========================================
   HEADER / NAVBAR (Glassmorphism)
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    padding: 1rem 0;
    background-color: rgba(7, 10, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.logo a {
    display: flex;
    align-items: center;
    position: relative;
    height: 50px;
}

.header-logo {
    max-height: 50px;
    width: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: brightness(0) invert(1); /* Deixando a logo padrão branca */
}

/* Estado Inicial (Topo da página) */
.logo-scrolled {
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
}

.logo-default {
    opacity: 1;
    transform: translateX(0);
}

/* Estado após o Scroll */
header.scrolled .logo-default {
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
}

header.scrolled .logo-scrolled {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--color-primary-light);
    text-shadow: 0 0 10px rgba(164, 187, 242, 0.5);
}

.nav-menu a.btn-primary {
    color: white;
}
.nav-menu a.btn-primary:hover {
    text-shadow: none;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* =========================================
   HERO SECTION (Sexy Dark)
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(164, 187, 242, 0.1);
    color: var(--color-primary-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(164, 187, 242, 0.3);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 15px rgba(164, 187, 242, 0.1);
}

.hero-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(164, 187, 242, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Elementos de fundo dinâmicos */
.hero-backdrop-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(40, 50, 108, 0) 70%);
    z-index: -2;
    filter: blur(40px);
    animation: morphBlob 15s ease-in-out infinite alternate;
}

.hero-backdrop-ring {
    position: absolute;
    width: 110%;
    height: 110%;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    z-index: -1;
    animation: rotateRing 30s linear infinite;
}

.hero-backdrop-ring::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--color-neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-neon-blue);
}

.hero-caio-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.8));
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-caio-img {
    transform: scale(1.05);
}

/* Badges flutuantes premium */
.floating-badge {
    position: absolute;
    z-index: 10;
    background: rgba(10, 15, 37, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(164, 187, 242, 0.2);
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    animation: floatBadge 6s ease-in-out infinite;
}

.badge-left {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.badge-right {
    bottom: 25%;
    right: -5%;
    animation-delay: 3s;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-neon-blue);
    font-size: 1.4rem;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
}

.badge-subtitle {
    color: var(--color-primary-light);
    font-size: 0.75rem;
}

/* Animations */
@keyframes morphBlob {
    0% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; transform: scale(1); }
    100% { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; transform: scale(1.1); }
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

/* =========================================
   LOGOS / FAIXA DE CONFIANÇA
   ========================================= */
.trust-bar {
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(10, 15, 37, 0.3);
    position: relative;
    z-index: 2;
}

.trust-bar p {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    opacity: 0.7;
}

.logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.logos-wrapper i {
    font-size: 2.8rem;
    color: rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 0 rgba(164,187,242,0));
}

.logos-wrapper i:hover {
    color: var(--color-primary-light);
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 10px 15px rgba(164,187,242,0.4));
}

/* =========================================
   STATS / NÚMEROS (Neon)
   ========================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    position: relative;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 0 20px rgba(164, 187, 242, 0.5);
}

.stat-desc {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   ECOSSISTEMA / SERVIÇOS (Glassmorphism Cards)
   ========================================= */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--color-text-light);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.card {
    background: var(--color-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Gradiente invisível que brilha no hover */
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(164, 187, 242, 0.06), transparent 40%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(164, 187, 242, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(37, 99, 235, 0.1);
}

.card:hover::before {
    opacity: 1;
}

.card > * {
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(37,99,235,0) 100%);
    border: 1px solid rgba(37,99,235,0.3);
    color: var(--color-primary-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: inset 0 0 20px rgba(37,99,235,0.1);
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.card-features {
    margin-bottom: 2.5rem;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e2e8f0;
}

.card-features i {
    color: var(--color-neon-blue);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(59,130,246,0.5));
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-primary-light);
    margin-top: auto;
    font-size: 1.05rem;
}

.card-cta i {
    transition: transform 0.3s ease;
}

.card:hover .card-cta i {
    transform: translateX(8px);
}

/* =========================================
   METODOLOGIA (Timeline Fluida)
   ========================================= */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

/* Linha Neon conectando os passos */
.methodology-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-neon-blue), transparent);
    z-index: 0;
    opacity: 0.5;
}

.method-step {
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--color-glass-bg);
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.method-step:hover {
    transform: translateY(-5px);
    border-color: rgba(164,187,242,0.2);
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--color-bg-deep);
    border: 2px solid var(--color-primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    box-shadow: 0 0 20px rgba(164,187,242,0.2);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.method-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary-light);
}

.method-step p {
    color: var(--color-text-light);
}

/* =========================================
   SOBRE MIM
   ========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

/* Card de fundo estilo Glassmorphism */
.about-backdrop-card {
    position: absolute;
    top: 15%;
    left: 5%;
    right: 5%;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 50, 108, 0.4) 0%, rgba(10, 15, 37, 0.8) 100%);
    border: 1px solid rgba(164, 187, 242, 0.15);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: -1;
    overflow: hidden;
}

.about-backdrop-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    filter: blur(20px);
}

.about-caio-img {
    width: 90%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.7));
    position: relative;
    z-index: 2;
    transform: translateY(-2rem); /* Faz o Caio "sair" do topo do card */
    transition: transform 0.4s ease;
}

.about-image:hover .about-caio-img {
    transform: translateY(-2.5rem) scale(1.02);
}

/* Badge de experiência */
.about-experience-badge {
    position: absolute;
    bottom: 25px;
    left: -10px;
    z-index: 10;
    background: var(--color-bg-deep);
    border: 1px solid rgba(164, 187, 242, 0.3);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    animation: pulseBadge 4s infinite alternate;
}

.exp-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.exp-label {
    color: var(--color-primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

@keyframes pulseBadge {
    0% { box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
    100% { box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px rgba(59, 130, 246, 0.3); }
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-primary-light);
    margin-bottom: 2rem;
    font-style: italic;
    border-left: 3px solid var(--color-neon-blue);
    padding-left: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--color-text-light);
}

.authority-badges {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.03);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.badge-item i {
    font-size: 2rem;
    color: var(--color-neon-blue);
    filter: drop-shadow(0 0 8px rgba(59,130,246,0.5));
}

.badge-item span {
    font-weight: 600;
    color: white;
}

/* =========================================
   PROVA SOCIAL (CARROSSEL)
   ========================================= */
.testimonials-slider {
    padding: 2rem 1rem 4rem;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    height: auto;
    min-height: 380px;
    background: var(--color-glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    margin-bottom: 2rem;
}

.testimonial-card:hover {
    border-color: rgba(164, 187, 242, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transform: translateY(-5px);
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.testimonial-content i {
    font-size: 2rem;
    color: rgba(164,187,242,0.3);
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.05rem;
    color: #cbd5e1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
}

.author-img {
    width: 50px;
    height: 50px;
    background: rgba(164,187,242,0.1);
    border: 1px solid rgba(164,187,242,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    font-size: 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-img span {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.author-info h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 0;
}

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

/* Swiper Customization */
.swiper-button-next, .swiper-button-prev {
    color: var(--color-primary-light);
    transition: all 0.3s ease;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 2.2rem;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    color: var(--color-neon-blue);
    transform: scale(1.2);
    box-shadow: none;
    background: transparent;
}

.swiper-pagination-bullet {
    background: rgba(164, 187, 242, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--color-neon-blue);
    box-shadow: 0 0 10px var(--color-neon-blue);
    width: 20px;
    border-radius: 10px;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
}

/* =========================================
   FAQ
   ========================================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.02);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: white;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(164,187,242,0.05);
    color: var(--color-primary-light);
}

.faq-question i {
    color: var(--color-neon-blue);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0,0,0,0.2);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--color-text-light);
    margin-top: 1rem;
}

/* =========================================
   CONTATO SECTION
   ========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.method-icon {
    width: 54px;
    height: 54px;
    background: rgba(164,187,242,0.05);
    border: 1px solid rgba(164, 187, 242, 0.15);
    color: var(--color-neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: inset 0 0 15px rgba(37,99,235,0.1);
    flex-shrink: 0;
}

.method-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.method-text h4 {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.method-text p {
    font-weight: 500;
    color: var(--color-text-light);
    margin: 0;
    margin-top: 0.2rem;
    line-height: 1.2;
}

.contact-form {
    background: var(--color-glass-bg);
    backdrop-filter: blur(16px);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: var(--shadow-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: white;
    transition: var(--transition-fast);
    background-color: rgba(0,0,0,0.2);
}

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

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-neon-blue);
    background-color: rgba(0,0,0,0.4);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Fix para opções do select no tema dark */
.form-group select option {
    background-color: var(--color-bg-deep);
    color: white;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background-color: #03050a; /* Fundo mais escuro possível para fechar a página */
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 3rem;
}

.footer-logo {
    max-height: 70px;
    width: auto;
    margin-bottom: 1rem;
}

.logo-white {
    filter: brightness(0) invert(1);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* =========================================
   RESPONSIVE REFINEMENTS FOR ENHANCED IMAGES
   ========================================= */
@media (max-width: 992px) {
    .badge-left {
        left: -5%;
        top: 15%;
    }
    .badge-right {
        right: -2%;
        bottom: 15%;
    }
    .hero-backdrop-ring {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .floating-badge {
        padding: 0.6rem 1rem;
    }
    .badge-icon {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    .badge-title {
        font-size: 0.8rem;
    }
    .badge-left {
        left: 0;
    }
    .badge-right {
        right: 0;
    }
    
    .about-experience-badge {
        padding: 0.75rem 1rem;
        left: 0;
        bottom: 15px;
    }
    .exp-number {
        font-size: 1.8rem;
    }
    .exp-label {
        font-size: 0.7rem;
    }
}

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

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .section {
        padding: 6rem 0;
    }
    .hero-grid, .about-container, .contact-container {
        grid-template-columns: 1fr;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .stat-item:nth-child(2)::after {
        display: none;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .methodology-grid::before {
        display: none;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    .container {
        padding: 0 1.5rem;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(7, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
        padding: 6rem 2rem;
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        color: white;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2.4rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    .hero-content p {
        font-size: 1.05rem;
        max-width: 100%;
    }
    .badge {
        font-size: 0.75rem;
    }
    .logos-wrapper {
        gap: 2rem;
    }
    .logos-wrapper i {
        font-size: 2rem;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .about-content h2, .contact-info h2 {
        font-size: 2.2rem;
    }
    .authority-badges {
        flex-direction: column;
        gap: 1rem;
    }
    .contact-container {
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stat-item::after {
        display: none;
    }
    .stat-number {
        font-size: 2.8rem;
    }
    .card {
        padding: 2rem 1.5rem;
    }
    .card-features {
        padding-left: 0;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =========================================
   BOTAO WHATSAPP FLUTUANTE
   ========================================= */
.wa-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.wa-floating:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

.wa-floating svg { 
    width: 34px; 
    height: 34px; 
    fill: currentColor; 
}

/* =========================================
   REDESENHO DO BLOG (ARTIGO INDIVIDUAL)
   ========================================= */

/* Barra de Progresso */
.reading-progress-bar-container {
    position: fixed;
    top: 80px; /* Logo abaixo do header fixo */
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
}

.reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-neon-blue), #8b5cf6);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Hero do Post */
.blog-post-hero {
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
    padding-top: 160px;
    padding-bottom: 50px;
    text-align: center;
    position: relative;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--color-primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-post-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-post-meta-divider {
    width: 4px;
    height: 4px;
    background-color: rgba(164, 187, 242, 0.4);
    border-radius: 50%;
}

.blog-post-title {
    color: var(--color-text-dark);
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    line-height: 1.15;
    font-weight: 800;
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 0 20px;
    letter-spacing: -1px;
}

/* Imagem de Capa Hero */
.blog-post-image-wrapper {
    max-width: 1400px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.blog-post-image-card {
    width: 100%;
    height: clamp(550px, 85vh, 1050px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--color-glass-border);
    position: relative;
}

.blog-post-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.blog-post-image-card:hover img {
    transform: scale(1.03);
}

/* Container do Post */
.blog-post-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.blog-post-body-card {
    background: rgba(10, 15, 37, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-dark);
}

/* Tipografia e Estilos de Texto */
.blog-post-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #cbd5e1;
}

.blog-post-content p {
    margin-bottom: 2rem;
}

.blog-post-content h2 {
    color: var(--color-text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 3.5rem 0 1.5rem;
    position: relative;
    padding-left: 18px;
}

.blog-post-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 4px;
    background: linear-gradient(to bottom, var(--color-neon-blue), #8b5cf6);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.blog-post-content h3 {
    color: var(--color-text-dark);
    font-size: 1.45rem;
    font-weight: 700;
    margin: 2.5rem 0 1.2rem;
}

.blog-post-content blockquote {
    background: rgba(59, 130, 246, 0.03);
    border-left: 4px solid var(--color-neon-blue);
    padding: 25px 30px;
    margin: 2.5rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #e2e8f0;
}

.blog-post-content strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

.blog-post-content a {
    color: var(--color-neon-blue);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.blog-post-content a:hover {
    color: var(--color-primary-light);
}

/* Seção de Compartilhamento */
.share-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.share-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--color-neon-blue);
    color: white;
    transform: translateY(-3px);
}

.share-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
    color: #25d366;
}

/* Toast de Cópia */
.toast-copy {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 20px);
    background: rgba(10, 15, 37, 0.95);
    border: 1px solid var(--color-neon-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: var(--shadow-glow);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-copy.active {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Card de Autor Upgradado */
.author-profile-card {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.04) 0%, rgba(139, 92, 246, 0.02) 100%);
    border: 1px solid rgba(164, 187, 242, 0.15);
    border-radius: var(--border-radius);
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.author-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-neon-blue);
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}

.author-profile-info {
    flex-grow: 1;
}

.author-profile-info h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.author-profile-info p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}

.author-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-neon-blue);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.author-cta-btn:hover {
    color: white;
    gap: 12px;
}

/* Artigos Relacionados */
.related-posts-section {
    max-width: 960px;
    margin: 80px auto 0;
    padding: 0 20px;
}

.related-posts-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.related-posts-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: var(--color-neon-blue);
    border-radius: 2px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Responsividade do Post */
@media (max-width: 992px) {
    .reading-progress-bar-container {
        top: 70px;
    }
}

@media (max-width: 768px) {
    .blog-post-body-card {
        padding: 30px 20px;
        border-radius: var(--border-radius);
    }
    
    .author-profile-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-hero {
        padding-top: 130px;
        padding-bottom: 30px;
    }
    
    .share-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .wa-floating {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .wa-floating svg {
        width: 28px;
        height: 28px;
    }
}
