/* =========================================
   DESIGN SYSTEM & VARIABLES
   ========================================= */
:root {
    /* Brand Colors */
    --clr-brand-primary: #0ead69;
    /* Verde Saúde Inovador */
    --clr-brand-secondary: #0a4f89;
    /* Azul Institucional Seguro */
    --clr-brand-accent: #23d18b;
    --clr-dark-brand: #052644;
    /* Fundo azul escuro */

    /* Neutral Colors */
    --clr-bg-main: #ffffff;
    --clr-bg-gray: #f8fafc;
    --clr-bg-surface: #f1f5f9;
    --clr-text-main: #1e293b;
    --clr-text-muted: #64748b;
    --clr-text-light: #94a3b8;
    --clr-white: #ffffff;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadow & Radius */
    --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-soft: 0 20px 40px -10px rgba(10, 79, 137, 0.12);
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-full: 9999px;

    /* Layout */
    --max-width: 1200px;
    --section-padding: 5rem 1rem;
}

/* =========================================
   RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px;
    /* Previne que o header fixo cubra o título da seção ao clicar no menu */
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-text-main);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-white {
    color: var(--clr-white) !important;
}

.text-brand {
    color: var(--clr-brand-primary);
}

.bg-gray {
    background-color: var(--clr-bg-gray);
}

.bg-blue-dark {
    background-color: var(--clr-brand-secondary);
}

.bg-dark-gradient {
    background: linear-gradient(135deg, var(--clr-dark-brand), var(--clr-brand-secondary));
}

.w-100 {
    width: 100%;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    background-color: rgba(14, 173, 105, 0.1);
    color: var(--clr-brand-primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(14, 173, 105, 0.2);
}

.badge-accent {
    background-color: var(--clr-brand-secondary);
    color: var(--clr-white);
    border: none;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--clr-brand-primary);
    color: var(--clr-white);
    box-shadow: 0 4px 14px 0 rgba(14, 173, 105, 0.39);
}

.btn-primary:hover {
    background-color: var(--clr-brand-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 173, 105, 0.4);
}

.btn-secondary {
    background-color: var(--clr-bg-surface);
    color: var(--clr-brand-secondary);
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
}

.btn-secondary-solid {
    background-color: var(--clr-white);
    color: var(--clr-brand-secondary);
}

.btn-secondary-solid:hover {
    background-color: var(--clr-bg-surface);
    transform: translateY(-2px);
}

.btn-outline-sm {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--clr-brand-secondary);
    color: var(--clr-brand-secondary);
    border-radius: var(--radius-md);
    font-weight: 500;
}

.btn-outline-sm:hover {
    background-color: var(--clr-brand-secondary);
    color: var(--clr-white);
}

.btn-outline-light {
    border: 2px solid var(--clr-white);
    color: var(--clr-white);
    background: transparent;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.1rem 2.25rem;
    font-size: 1.125rem;
}

.whatsapp-btn i {
    font-size: 1.25rem;
}

/* =========================================
   HEADER
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #f1f5f9;
    padding: 0;
    /* Removendo padding para a logo ditar a altura justa */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px -1px rgb(0 0 0 / 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 180px;
    margin: -60px 0 -60px -20px;
    /* Margem negativa pesada para "comer" o branco da imagem e economizar altura da barra */
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled .logo-img {
    height: 110px;
    margin: -30px 0 -30px -10px;
}

.footer-logo {
    height: 120px;
    width: auto;
    margin: -30px 0 0.75rem -10px;
    /* Margem negativa apenas para compensar o whitespace do PNG */
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.desktop-nav a:hover {
    color: var(--clr-brand-primary);
}

@media(max-width: 900px) {
    .desktop-nav {
        display: none;
    }
}

/* =========================================
   01. HERO SECTION
   ========================================= */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 100% 0%, rgba(14, 173, 105, 0.06) 0%, rgba(255, 255, 255, 0) 50%);
    position: relative;
    overflow: hidden;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background-image: url('assets/logo.png');
    background-repeat: no-repeat;
    background-size: 1500px auto;
    background-position: center;
    opacity: 0.075;
    /* Aumentei a opacidade para ficar mais visível */
    transform: translate(-50%, -50%) rotate(-5deg);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--clr-text-main);
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    font-family: var(--font-body);
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--clr-brand-secondary);
    font-size: 0.95rem;
}

.hero-bullets i {
    color: var(--clr-brand-primary);
    font-size: 1.25rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* =========================================
   02. PAIN SECTION
   ========================================= */
.pain-section {
    padding: var(--section-padding);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pain-card {
    background-color: var(--clr-white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 173, 105, 0.2);
}

.pain-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(226, 232, 240, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--clr-brand-secondary);
    transition: all 0.3s ease;
}

.pain-card:hover .pain-icon {
    background-color: rgba(14, 173, 105, 0.1);
    color: var(--clr-brand-primary);
}

.pain-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--clr-text-main);
}

.pain-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.pain-closing {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--clr-text-muted);
}

/* =========================================
   CALCULATOR SECTION
   ========================================= */
.calculator-wrapper {
    margin-top: 4rem;
    max-width: 900px;
    margin-inline: auto;
}

.calculator-box {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.calc-header {
    background-color: var(--clr-brand-secondary);
    color: var(--clr-white);
    padding: 1.5rem 2rem;
    text-align: center;
}

.calc-header h3 {
    color: var(--clr-white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calc-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.calc-inputs label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text-main);
    margin-bottom: 0.25rem;
}

.calc-inputs input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--clr-bg-gray);
    transition: all 0.2s;
}

.calc-inputs input:focus {
    border-color: var(--clr-brand-primary);
    background-color: var(--clr-white);
    outline: none;
}

.calc-result {
    background-color: rgba(14, 173, 105, 0.05);
    border: 2px dashed rgba(14, 173, 105, 0.3);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.result-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--clr-brand-primary);
    margin: 0.5rem 0;
    line-height: 1;
}

.result-subtitle {
    font-size: 0.85rem;
    color: var(--clr-text-light);
}

/* Gráfico da Calculadora */
.calc-graph {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
}

.graph-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text-main);
    margin-bottom: 0.75rem;
}

.graph-bars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.graph-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.graph-track {
    background-color: #e2e8f0;
    border-radius: var(--radius-full);
    height: 1rem;
    position: relative;
    overflow: hidden;
}

.graph-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bg-danger {
    background-color: #ef4444;
}

.bg-success {
    background-color: var(--clr-brand-primary);
}

.graph-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-main);
}

.graph-saving {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    text-align: center;
}

.graph-saving strong {
    color: var(--clr-brand-primary);
    font-size: 1rem;
}

.calc-source {
    background-color: var(--clr-bg-gray);
    padding: 1rem 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: justify;
}

.calc-source small {
    display: block;
    color: var(--clr-text-muted);
    line-height: 1.5;
    font-size: 0.8rem;
}

@media(max-width: 768px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* =========================================
   03. SOLUTION SECTION
   ========================================= */
.solution-section {
    padding: var(--section-padding);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--clr-text-main);
    font-weight: 500;
}

.solution-list i {
    font-size: 1.5rem;
    margin-top: 0.15rem;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
}

.solution-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.floating-badge {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: var(--clr-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--clr-brand-secondary);
    animation: bounceSlow 3s infinite ease-in-out;
}

.floating-badge i {
    color: var(--clr-brand-primary);
    font-size: 1.5rem;
}

/* =========================================
   04. HOW IT WORKS
   ========================================= */
.steps-section {
    padding: var(--section-padding);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
    gap: 2rem;
}

.step-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #cbd5e1;
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--clr-brand-primary);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 8px var(--clr-white), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-item p {
    color: var(--clr-text-muted);
}

/* =========================================
   05. IMPACT SECTION
   ========================================= */
.impact-section {
    padding: var(--section-padding);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.impact-item {
    text-align: center;
    color: var(--clr-white);
}

.impact-item i {
    font-size: 3rem;
    color: var(--clr-brand-accent);
    margin-bottom: 1rem;
    display: inline-block;
}

.impact-item span {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
}

.impact-highlight {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--clr-brand-accent);
    padding: 2rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--clr-white);
    font-size: 1.25rem;
    font-style: italic;
    text-align: center;
}

/* =========================================
   06. TARGET SECTION
   ========================================= */
/* =========================================
   06. TARGET SECTION — "Ideal para o seu negócio"
   ========================================= */
.target-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--clr-bg-main) 0%, var(--clr-bg-gray) 100%);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    /* Aumentado espaçamento entre quadros */
    max-width: 1000px;
    margin: 0 auto;
}

.target-card {
    background: var(--clr-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-brand-primary), var(--clr-brand-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.target-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(10, 79, 137, 0.15);
    border-color: rgba(14, 173, 105, 0.3);
}

.target-card:hover::before {
    transform: scaleX(1);
}

.target-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(14, 173, 105, 0.1), rgba(14, 173, 105, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--clr-brand-primary);
    transition: all 0.35s ease;
}

.target-card:hover .target-icon {
    background: linear-gradient(135deg, var(--clr-brand-primary), var(--clr-brand-accent));
    color: var(--clr-white);
    transform: scale(1.1);
}

.target-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--clr-text-main);
}

.target-card p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

@media(max-width: 768px) {
    .target-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 480px) {
    .target-grid {
        grid-template-columns: 1fr;
    }

    .target-grid .target-card:last-child {
        max-width: 100%;
    }
}

/* =========================================
   07. EDUCATIONAL SECTION
   ========================================= */
.edu-section {
    padding: var(--section-padding);
}

.edu-article {
    column-count: 2;
    column-gap: 3rem;
    text-align: justify;
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

/* =========================================
   08. EBOOK SECTION
   ========================================= */
.ebook-section {
    padding: var(--section-padding);
}

.ebook-container {
    background: linear-gradient(to right, #ffffff, var(--clr-bg-surface));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
}

.ebook-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ebook-content p {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--clr-brand-primary);
}

/* =========================================
   09. PROOF SECTION
   ========================================= */
.trust-section {
    padding: 4rem 1rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--clr-brand-secondary);
    margin-bottom: 0.5rem;
}

.trust-number i {
    color: var(--clr-brand-primary);
}

.trust-label {
    font-weight: 600;
    color: var(--clr-text-muted);
}

/* =========================================
   10. CTA section
   ========================================= */
.cta-section {
    padding: 6rem 1rem;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}

.cta-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-inline: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 2.5rem;
    align-items: end;
    /* Alinha pela base inferior — última linha de cada coluna termina na mesma altura */
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 380px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 0;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--clr-white);
    font-family: var(--font-heading);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
    color: var(--clr-white);
    padding-left: 4px;
}

.footer-contact p {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--clr-brand-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: 1.5rem;
    font-size: 0.8rem;
    color: #64748b;
}

.footer-bottom p {
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #64748b;
    transition: color 0.3s;
    font-size: 0.8rem;
}

.legal-links a:hover {
    color: var(--clr-white);
}

/* Toast notification for the form */
.form-toast {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1rem;
    text-align: center;
    animation: fadeInToast 0.4s ease-out;
}

.form-toast.success {
    display: block;
    background-color: rgba(14, 173, 105, 0.12);
    color: var(--clr-brand-primary);
    border: 1px solid rgba(14, 173, 105, 0.25);
}

.form-toast.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

@keyframes fadeInToast {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--clr-brand-primary);
    color: var(--clr-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(14, 173, 105, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulseGlow 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.wa-tooltip {
    position: absolute;
    right: 80px;
    background: #1e293b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    white-space: nowrap;
}

.floating-whatsapp:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes floatSlow {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes bounceSlow {

    0%,
    100% {
        transform: translateY(-5%);
    }

    50% {
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 173, 105, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(14, 173, 105, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(14, 173, 105, 0);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.float-animation-slow {
    animation: floatSlow 8s ease-in-out infinite;
}

/* Scroll Reveal Classes (handled via JS) */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in {
    opacity: 0;
    transition: all 1s ease-out;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media(max-width: 1024px) {

    .hero-grid,
    .solution-grid {
        gap: 2rem;
    }

    .hero-headline {
        font-size: 2.75rem;
    }

    .ebook-container {
        padding: 3rem 2rem;
        gap: 2rem;
    }
}

@media(max-width: 768px) {
    .logo-img {
        height: 120px;
        margin: -40px 0 -40px -20px;
    }

    .main-header.scrolled .logo-img {
        height: 80px;
        margin: -20px 0 -20px -10px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-bullets {
        justify-content: center;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .hidden-mobile {
        display: none;
    }

    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }

    .impact-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .edu-article {
        column-count: 1;
    }

    .ebook-container {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand p {
        margin: 0 auto;
        max-width: 320px;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
    }

    .legal-links {
        gap: 1rem;
    }

    .floating-badge {
        left: 1rem;
        bottom: 1rem;
        padding: 0.75rem;
    }
}

@media(max-width: 480px) {

    .impact-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-headline {
        font-size: 2.25rem;
    }
}