/* ==========================================================================
   Base & Variables
   ========================================================================== */
:root {
    /* Colors */
    --primary: #1e3a8a;
    /* Deep blue */
    --primary-light: #3b82f6;
    --primary-dark: #1e40af;

    --secondary: #0ea5e9;
    /* Sky blue */
    --secondary-light: #e0f2fe;

    --accent: #10b981;
    /* Emerald green (Health/Growth) */
    --accent-hover: #059669;

    --alert: #ef4444;
    /* Red for warnings */
    --alert-bg: #fef2f2;

    --bg-body: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;

    --text-main: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Structure & Effects */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

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

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

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

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

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

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.bg-light {
    background-color: var(--bg-light);
}

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

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

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

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.section-header {
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: var(--radius-full);
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-white);
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-light);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-img {
    height: 48px;
    /* Ajuste para preencher bem o header preservando margens */
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
    position: relative;
}

.nav-link:not(.btn-outline)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover:not(.btn-outline)::after,
.nav-link.active:not(.btn-outline)::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary);
    border-radius: 3px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 242, 254, 1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--primary-light);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-shape {
    width: 600px;
    height: 600px;
    background: url('img/people.webp') center/cover no-repeat;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: var(--shadow-xl);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: morph 8s ease-in-out infinite;
    position: relative;
    border: 8px solid white;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* ==========================================================================
   O Problema Section
   ========================================================================== */
.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.problema-card {
    background: var(--bg-body);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

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

.highlight-card {
    border-top: 4px solid var(--secondary);
}

.alert-card {
    background: var(--alert-bg);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-top: 4px solid var(--alert);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--alert);
}

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

.stat-text {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.stat-text strong {
    font-size: 2.5rem;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin: 0.5rem 0;
    font-family: var(--font-heading);
}

.alert-title {
    color: var(--alert);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Soluções / Como Ajudar Section
   ========================================================================== */
.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.solucao-card {
    background: linear-gradient(180deg, var(--white) 0%, #f4f7fb 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--secondary);
    transition: var(--transition);
    margin-bottom: 50px;
}

.solucao-card.card-destaque {
    border-top-color: var(--primary);
}

.solucao-card:last-child {
    border-top-color: var(--accent);
}

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

.solucao-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
    line-height: 1.3;
}

.solucao-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sub-feature-list {
    margin-top: 0.75rem;
    margin-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-muted);
}

.sub-feature-list li {
    font-size: 0.95rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.sub-feature-list li i {
    color: var(--secondary);
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

/* ==========================================================================
   Metodologia Section
   ========================================================================== */
.section-metodologia {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 6rem 0;
    color: var(--primary);
}

.section-header-met h2 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 4rem;
    letter-spacing: -1px;
    color: var(--primary);
}

.metodologia-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    /* Para mobile */
}

.met-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    text-align: center;
    margin-left: -50px;
    /* Intersecção */
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.met-circle:first-child {
    margin-left: 0;
}

.met-circle:hover {
    z-index: 10;
    border-color: var(--primary-light);
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.met-circle p {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--primary);
}

.metodologia-footer p {
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
    color: var(--primary);
}

/* ==========================================================================
   Nossos Programas Section
   ========================================================================== */
.programas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.grid-2-cols {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-auto {
    margin-top: auto !important;
}

/* Palestras Special Banner */
.palestras-banner {
    background-color: var(--bg-body);
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.9)), url('img/palestra.jpg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.palestras-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 3rem 1rem;
}

.palestras-icon-bg {
    width: 80px;
    height: 80px;
    background: #1e3a8a;
    /* Escuro como no pedestal do mic */
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.palestras-header h3 {
    color: var(--primary);
    font-size: 2.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.palestras-content {
    display: flex;
    padding: 1rem 3rem 3rem;
    gap: 3rem;
}

.palestras-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.palestras-lead {
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
}

.palestras-list-col {
    flex: 1;
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.programa-card {
    background: linear-gradient(180deg, var(--white) 0%, #f4f7fb 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.recommended {
    border: 2px solid var(--accent);
    transform: scale(1.02);
}

.recommended:hover {
    transform: scale(1.02) translateY(-10px);
}

.indicado-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.card-img-top {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.palestras-bg {
    background: #e6f0fa;
    color: var(--primary-light);
}

.essencial-bg {
    background: var(--primary);
    color: white;
}

.avancado-bg {
    background: var(--accent);
    color: white;
}

.card-body {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.essencial-body {
    background-color: #f1f5f9;
}

.avancado-body {
    background-color: #f0fdf4;
}

.avancado-body li i {
    color: var(--accent) !important;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.card-subtitle {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.card-body p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.small-note {
    font-size: 0.75rem !important;
    color: var(--text-light) !important;
    margin-top: auto !important;
    padding-top: 1.5rem;
    line-height: 1.4;
    font-style: italic;
}

.feature-list {
    margin-bottom: 1rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feature-list li i {
    color: var(--accent);
    margin-top: 4px;
}

.feature-list li .fa-plus {
    color: var(--accent);
    font-size: 1rem;
}

/* ==========================================================================
   Benefícios Section
   ========================================================================== */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.beneficio-item {
    background: var(--bg-body);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.beneficio-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--secondary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.beneficio-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.beneficio-item p {
    color: var(--text-muted);
}

/* ==========================================================================
   Sobre Nós Section / Profissionais
   ========================================================================== */
.profissionais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.profissional-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 3rem 2.5rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-gabriel {
    background: linear-gradient(to bottom, rgb(224 242 254) 0%, #ffffff 40%, #ffffff 100%);
}

.card-natalia {
    background: linear-gradient(to bottom, rgba(16, 185, 129, 0.15) 0%, #ffffff 40%, #ffffff 100%);
}

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

.profissional-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profissional-img-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-light);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.profissional-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    background-color: #0ea5e94d;
}

.profissional-title h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.profissional-formacao {
    display: block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.5px;
}

.profissional-intro {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.profissional-intro i {
    color: var(--secondary);
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.experience-list li {
    display: flex;
    gap: 1rem;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

.experience-list li i {
    color: var(--accent);
    margin-top: 0.25rem;
}

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

.sobre-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.abstract-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--primary-light) 100%);
    border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
    color: white;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.experience-badge .number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-dark);
    padding: 6rem 0 2rem;
    color: var(--text-light);
}

.footer-quote {
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-quote-icon {
    width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-quote p {
    font-size: 1.85rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto;
}

.footer-cta {
    max-width: 1000px;
    margin: 0 auto 5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.cta-banner-img {
    flex: 0 0 35%;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-top: -40px;
    /* Sobrepoe menos pra fora já que a imagem diminuiu */
}

.cta-banner-img img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.cta-banner-content {
    flex: 1;
    padding: 2rem 3rem 2rem 0;
    /* Altura reduzida de 3rem para 2rem */
    text-align: center;
}

.footer-cta h2 {
    font-size: 2.25rem;
    /* Diminuído de 2.75rem */
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.footer-lead {
    font-size: 1.1rem;
    /* Diminuído de 1.25rem */
    color: var(--secondary-light);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 48px;
    /* Aumentado de 38px conforme solicitado */
    width: auto;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.contact-link:hover {
    color: var(--text-white);
}

.contact-link i {
    color: var(--secondary);
    font-size: 1.25rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.875rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .sobre-container {
        flex-direction: column;
    }

    .sobre-image-wrapper {
        order: -1;
        margin-bottom: 2rem;
    }

    .experience-badge {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Metodologia Mobile */
    .metodologia-circles {
        flex-direction: column;
        gap: 0;
    }

    .met-circle {
        margin-left: 0;
        margin-top: -30px;
        width: 250px;
        height: 250px;
    }

    .met-circle:first-child {
        margin-top: 0;
    }

    .section-header-met h2 {
        font-size: 2.25rem;
    }

    /* Ajuste responsivo do banner CTA */
    .footer-quote p {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .footer-cta {
        flex-direction: column;
        padding: 3rem 2rem;
        margin-top: 6rem;
        text-align: center;
    }

    .cta-banner-img {
        width: 100%;
        max-width: 300px;
        /* Diminuído de 350px */
        margin-top: -80px;
        /* Ajustado para acompanhar a imagem menor */
        margin-bottom: 2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-banner-content {
        padding: 0;
        text-align: center;
    }

    .footer-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--bg-body);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.125rem;
    }

    .btn-outline {
        display: inline-block;
        margin-top: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .abstract-shape,
    .abstract-shape-2 {
        width: 300px;
        height: 300px;
        font-size: 6rem;
    }

    .palestras-header {
        padding: 2rem 2rem 1rem;
        flex-direction: column;
        text-align: center;
    }

    .palestras-content {
        flex-direction: column;
        padding: 0 2rem 2rem;
        gap: 1.5rem;
    }

    .grid-2-cols {
        grid-template-columns: 1fr;
    }

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

    .footer-contacts {
        align-items: center;
        width: 100%;
    }
}