* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Primárias - BASE DA IDENTIDADE */
    --primary-navy: #0A2E4D;
    --primary-blue: #1E5A8E;
    --primary-green: #059669;
    
    /* Cor de Ação - CONVERSÃO */
    --accent-orange: #F97316;
    --accent-orange-dark: #EA580C;
    
    /* Cores de Texto - LEGIBILIDADE */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #94A3B8;
    
    /* Backgrounds - HIERARQUIA */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #E2E8F0;
    --bg-dark: #0F172A;
    
    /* Cores Funcionais - FEEDBACK */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Aliases para facilitar uso */
    --primary: var(--primary-navy);
    --secondary: var(--primary-blue);
    --accent: var(--accent-orange);
    --text-dark: var(--text-primary);
    --text-gray: var(--text-secondary);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================== */
/* ===== HEADER CORRIGIDO ===== */
/* ========================== */
 
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: top 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center; /* Alinha o botão com os links */
}

/* Estilo dos links normais do menu desktop */
.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s;
}
 
.nav-links a:hover {
    color: var(--primary-blue);
}

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

/* Estilo do botão "Agendar Reunião" NO DESKTOP */
.nav-links .nav-cta {
    background: var(--accent-orange);
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-links .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    background: #ff5722;
    color: white; /* Garante que o texto fique branco no hover */
}
 
/* Remove a linha de sublinhado do botão CTA */
.nav-links .nav-cta::after {
    display: none; 
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-blue);
}
 
/* ========================== */
/* ===== FIM DO HEADER ===== */
/* ========================== */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--bg-dark) 100%);
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(30, 90, 142, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a8dadc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 span {
    color: var(--accent-orange);
    -webkit-text-fill-color: var(--accent-orange);
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    background: #ff5722;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.stat-item::before {
    content: '✓';
    color: #4ade80;
    font-weight: 700;
    font-size: 20px;
}

/* Stats Bar */
.stats-bar {
    background: white;
    padding: 60px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-box {
    transition: transform 0.3s;
    min-width: 200px;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    white-space: normal;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
    white-space: nowrap;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-navy);
    line-height: 1.3;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.problem-card ul {
    list-style: none;
    margin: 20px 0;
}

.problem-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.problem-card li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--error);
    font-weight: 700;
}

.problem-highlight {
    background: #FEF2F2;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid var(--error);
    font-weight: 600;
    color: #991B1B;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: white;
}

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

.dashboard-demo {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(10, 46, 77, 0.3);
    transition: transform 0.3s;
}

.dashboard-demo:hover {
    transform: scale(1.02);
}

.dashboard-header {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.dashboard-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255,255,255,0.95);
    margin-bottom: 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.dashboard-stat:hover {
    background: white;
    transform: translateX(5px);
}

.dashboard-stat:last-child {
    margin-bottom: 0;
}

.dashboard-label {
    font-weight: 600;
    color: var(--text-gray);
}

.dashboard-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
}

.dashboard-value.positive {
    color: var(--primary-green);
}

.solution-features {
    list-style: none;
}

.solution-features li {
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s;
}

.solution-features li:hover {
    padding-left: 10px;
    background: var(--bg-light);
    margin-left: -10px;
    padding-right: 10px;
    border-radius: 8px;
}

.solution-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-navy);
}

/* Differentials Section */
.differentials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.comparison-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card.highlight {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(10, 46, 77, 0.3);
}

.comparison-card.highlight:hover {
    transform: scale(1.07);
}

.comparison-card h3 {
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.comparison-card.highlight h3 {
    border-bottom-color: rgba(255,255,255,0.3);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
}

.comparison-list li::before {
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 20px;
}

.comparison-card:not(.highlight) li::before {
    content: '✗';
    color: var(--error);
}

.comparison-card.highlight li::before {
    content: '✓';
    color: var(--success);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-navy);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    background: white;
}

.service-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-orange);
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.service-details {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 600;
}

/* Cases Section */
.cases-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.case-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.case-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 30px;
}

.case-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.case-segment {
    opacity: 0.9;
    font-size: 14px;
}

.case-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.result-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.result-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    transition: width 1.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 2px;
}

.result-item.animated::before {
    width: 100%;
}

.result-item:hover {
    background: var(--primary-blue);
    transform: scale(1.05);
}

.result-item:hover .result-label,
.result-item:hover .result-value,
.result-item:hover .result-change {
    color: white;
}

/* Progress Bar Styles */
.progress-container {
    margin-top: 12px;
} 

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-gray);
    margin-bottom: 6px;
    font-weight: 500;
}

.progress-bar-wrapper {
    width: 100%;
    height: 6px;
    background: rgba(30, 90, 142, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.result-item.animated .progress-bar {
    width: var(--progress-width);
}

.result-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.result-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.result-change {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 4px;
}

.case-testimonial {
    background: #FEF3C7;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--warning);
    font-style: italic;
    margin-top: auto;
}

.case-author {
    font-style: normal;
    font-weight: 600;
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}
 
/* =================================== */
/* ===== ESTILOS DA SEÇÃO DE EQUIPE ===== */
/* =================================== */

.team-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    gap: 30px;
    margin-top: 60px;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
    border: 5px solid var(--primary-navy);
}
 
/* Ajuste de Posição das Fotos */
.iago-photo-ajust {
    object-position: 50% 20%; 
}
.joao-photo-ajust {
    object-position: 50% 40%;
}
/* Fim Ajuste de Posição */

.team-member h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--primary-navy);
}

.team-member .member-role {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 50px; 
}

.team-member .member-social a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    margin: 0 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.team-member .member-social a:hover {
    color: var(--primary-blue);
    padding-bottom: 2px;
    border-bottom: 2px solid var(--primary-blue);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateX(10px);
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 90, 142, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
 
.campo-armadilha {
    position: absolute;
    left: -5000px;
    top: -5000px;
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--bg-dark) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guarantee-item::before {
    content: '✓';
    font-size: 24px;
    color: var(--success);
    font-weight: 700;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
}

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

.footer-links li a {
    padding: 8px 0;
    display: inline-block;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
}

/* =================================== */
/* ===== RESPONSIVO E MENU MOBILE ===== */
/* =================================== */

@media (max-width: 768px) {
     
    /* --- Estilos do Menu Mobile --- */
     
    .mobile-menu-btn {
        display: block; /* Mostra o botão hambúrguer */
        z-index: 1002; /* Garante que fique acima de tudo */
    }



    /* Esconde o botão laranja do desktop (que está na <ul>) */
    .nav-links .nav-cta {
        display: none;
    }

    .nav-links {
        /* Transforma o menu em um painel flutuante */
        display: flex;
        flex-direction: column; /* Links em coluna */
        gap: 25px; /* Espaçamento entre os links */
        
        position: fixed;
        top: 0; /* Alinha no topo */
        right: 0; /* Alinha na direita */
        width: 80%; /* Ocupa 80% da tela */
        max-width: 320px; /* Limite máximo */
        height: 100vh; /* Altura total da tela */
        
        background: var(--bg-white);
        padding: 100px 30px 30px 30px; /* Espaço no topo para o header */
        
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        
        /* Animação de entrada/saída */
        transform: translateX(100%); /* Começa fora da tela (à direita) */
        transition: transform 0.3s ease-in-out;
        z-index: 1001; /* Fica abaixo do botão, mas acima do site */
        align-items: flex-start; /* Alinha links à esquerda */
    }

    .nav-links.active {
        transform: translateX(0); /* Posição final (visível) */
    }

    /* Estilo dos links dentro do menu mobile */
    .nav-links a {
        font-size: 20px;
        font-weight: 600;
        color: var(--text-dark);
    }
    .nav-links a:hover {
        color: var(--accent-orange);
    }
    .nav-links a::after {
        display: none; /* Remove efeito de sublinhado do desktop */
    }

    /* Estilo do botão "Agendar Reunião" DENTRO do menu mobile */
    .nav-links li .nav-cta {
        display: block;
        width: 100%;
        text-align: center;
        background: var(--accent-orange);
        color: white;
        padding: 15px;
        border-radius: 8px;
        font-size: 18px;
    }
    .nav-links li .nav-cta:hover {
        background: var(--accent-orange-dark);
        color: white;
        transform: none;
        box-shadow: none;
    }

    /* --- Ajustes de Layout Mobile --- */
     
    .hero {
        padding-top: 140px; /* Mais espaço por causa do header fixo */
    }
    .hero h1 {
        font-size: 36px; /* Fonte menor no mobile */
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }   

    .stat-label {
    /* ESTA É A CORREÇÃO PRINCIPAL: Permite quebrar o texto */
    white-space: normal; 
    }
     
    .stat-number {
        font-size: 32px;
        white-space: normal;
    }   

    .hero-subtitle {
        font-size: 18px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    /* Força 1 coluna em todas as seções */
    .solution-content,
    .comparison-table,
    .contact-content,
    .footer-content,
    .problems-grid,
    .cases-grid,
    .team-grid { /* Adicionada a seção de sócios */
        grid-template-columns: 1fr;
    }

    /* Ajusta os cards de "Cases" no mobile */
    .case-results {
        grid-template-columns: 1fr; /* Resultados em 1 coluna */
        gap: 15px;
    }

    .section-title {
        font-size: 32px;
    }
    .service-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .comparison-card.highlight {
        transform: scale(1);
    }

    /* Ajustes da seção de Sócios no Mobile */
    .team-grid {
         gap: 20px;
    }
    .team-member .member-role {     
         min-height: 0; /* Remove a altura mínima no mobile */      
    }       

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

}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    
}

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