/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-cyan: #06b6d4;
    --primary-blue: #3b82f6;
    --primary-purple: #a855f7;
    --primary-red: #ef4444;
    --primary-green: #10b981;
    --primary-yellow: #f59e0b;
    --dark-bg: #0a0e27;
    --dark-secondary: #1e293b;
    --text-light: #d1d5db;
    --text-bright: #67e8f9;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: var(--dark-bg);
    overflow-x: hidden;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-cyan), transparent);
    top: -300px;
    left: -300px;
    animation-delay: 0s;
}

.orb2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-purple), transparent);
    bottom: -400px;
    right: -400px;
    animation-delay: 5s;
}

.orb3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-blue), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, -100px) scale(1.1);
    }

    66% {
        transform: translate(-100px, 100px) scale(0.9);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    transition: transform 0.3s ease-in-out, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--dark-bg), var(--pdark-bg));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-title {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-cyan);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.nav-toggle {
    display: none;
    /* Escondido por padrão, aparece no @media */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    /* Controlado pelo JS */
    flex-direction: column;
    gap: 1.5rem;
    background: var(--dark-secondary);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-align: center;
    font-size: 1.2rem;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--primary-cyan);
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 2rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Canvas de Rede Neural */
#neuralCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    width: 90%;
    padding: 2rem;
    z-index: 10;
}

/* Logo Container com Glow */
.hero-logo-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 2rem;
}

.hero-logo {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    animation: logo-float 4s ease-in-out infinite;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.5));
    transition: filter 0.3s ease;
}

.hero-logo:hover img {
    filter: drop-shadow(0 0 50px rgba(6, 182, 212, 0.8)) drop-shadow(0 0 80px rgba(168, 85, 247, 0.5));
}

@keyframes logo-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

/* Glow Ring Effect */
.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            transparent,
            var(--primary-cyan),
            var(--primary-blue),
            var(--primary-purple),
            transparent);
    opacity: 0.3;
    animation: glow-rotate 8s linear infinite;
    z-index: 1;
}

.logo-glow::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: var(--dark-bg);
    border-radius: 50%;
}

@keyframes glow-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    background-size: 300% 300%;
    text-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-slogan {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--text-bright);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    color: white;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-cyan);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.arrow {
    font-size: 1.25rem;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-blue));
    margin: 1.5rem auto;
    border-radius: 2px;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-box,
.solution-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.problem-box:hover,
.solution-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.problem-title {
    color: #f87171;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-title {
    color: var(--primary-cyan);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.expertise-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
}

.expertise-box h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.expertise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-icon {
    color: var(--primary-cyan);
    margin-right: 1rem;
    font-size: 1.25rem;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card.cyan .service-icon {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
}

.service-card.purple .service-icon {
    background: linear-gradient(135deg, var(--primary-purple), #ec4899);
}

.service-card.red .service-icon {
    background: linear-gradient(135deg, var(--primary-red), #f97316);
}

.service-card.green .service-icon {
    background: linear-gradient(135deg, var(--primary-green), #059669);
}

.service-card.yellow .service-icon {
    background: linear-gradient(135deg, var(--primary-yellow), #d97706);
}

.service-card.orange .service-icon {
    background: linear-gradient(135deg, #f97316, #f59e0b);
}


.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    color: #9ca3af;
}

/* Target Audience */
.target-audience {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
}

.target-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.target-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.target-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
}

.target-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

/* ============================================== */
/* === SEÇÃO 'COMO FUNCIONA' (ATUALIZADA) ======= */
/* ============================================== */

.how-it-works {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.flow-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 3rem 0;
}

.flow-desktop::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg,
            var(--primary-cyan),
            var(--primary-purple),
            var(--primary-red),
            var(--primary-cyan));
    background-size: 300% 100%;
    z-index: 1;
    animation: flow-line 4s linear infinite;
}

.flow-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 0.3s ease;
    animation: pulse 2.5s ease-in-out infinite;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary-cyan);
    animation: rotate 3s linear infinite;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-radius: 50%;
    border: 1px solid transparent;
    border-left-color: var(--primary-purple);
    opacity: 0.6;
    animation: rotate 5s linear infinite reverse;
}

.step-number:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.step-number.cyan {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
}

.step-number.purple {
    background: linear-gradient(135deg, var(--primary-purple), #ec4899);
}

.step-number.red {
    background: linear-gradient(135deg, var(--primary-red), #f97316);
}

.step-number.green {
    background: linear-gradient(135deg, var(--primary-green), #059669);
}

.step-number.yellow {
    background: linear-gradient(135deg, var(--primary-yellow), #d97706);
}

.step-title {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-light);
    font-size: 0.875rem;
}

.flow-mobile {
    display: none;
    flex-direction: column;
    gap: 2rem;
}

/* Results Section */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.result-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-description {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* How to Start Section */
.how-to-start {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 3rem;
    border-radius: 20px;
}

.start-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.start-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.start-number {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    /* Adicionando as mesmas animações para consistência */
    animation: pulse 2.5s ease-in-out infinite;
}

.start-number::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary-cyan);
    animation: rotate 3s linear infinite;
}

.start-number::after {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-radius: 50%;
    border: 1px solid transparent;
    border-left-color: var(--primary-purple);
    opacity: 0.6;
    animation: rotate 5s linear infinite reverse;
}

.start-number.cyan {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
}

.start-number.purple {
    background: linear-gradient(135deg, var(--primary-purple), #ec4899);
}

.start-number.red {
    background: linear-gradient(135deg, var(--primary-red), #f97316);
}

.start-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;

    /* LINHAS ADICIONADAS PARA O ALINHAMENTO FINAL */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    /* Força todos os títulos a terem a mesma altura mínima */
}

.start-step-description {
    text-align: center;
}

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

/* === CONTACT SECTION (MODIFICADO) === */

.contact {
    text-align: center;
    /* Centraliza o cabeçalho da seção */
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.5rem;
    color: var(--text-bright);
}

.contact-card {
    background: rgba(30, 41, 59, 0.7);
    /* Mais opaco para o blur se destacar */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    /* Efeito de vidro mais forte */
    padding: 2.5rem;
    border-radius: 30px;
    max-width: 800px;
    margin: 3rem auto 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: left;
    /* Alinha o texto dentro dos botões à esquerda */
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.1);
    /* Sombra interna para profundidade */
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.4), 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-item .contact-details {
    margin-left: 1rem;
}

.contact-item.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-item.email {
    background: linear-gradient(135deg, var(--primary-blue), #2563eb);
}

.contact-item.website {
    background: linear-gradient(135deg, var(--primary-purple), #9333ea);
}

.contact-item.instagram {
    background: linear-gradient(135deg, #e91e63, #c13584);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    font-weight: 600;
}

.contact-value {
    opacity: 0.9;
}

/* Adicionado para centralizar o botão final */
.final-cta {
    margin-top: 2.5rem;
}

.final-cta .btn-primary {
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-title {
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-subtitle {
    color: #9ca3af;
}

.footer-copyright {
    text-align: right;
    color: #9ca3af;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .flow-desktop {
        display: none;
    }

    .flow-mobile {
        display: flex;
    }

    .footer-content,
    .footer-copyright {
        text-align: center;
        justify-content: center;
        width: 100%;
    }
}

/* ============================================== */
/* === ANIMAÇÕES GLOBAIS (KEYFRAMES) ============ */
/* ============================================== */

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(8, 145, 178, 0.5);
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

@keyframes flow-line {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 300% 50%;
    }
}

/* Outras Animações Base */
html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--primary-cyan);
    color: white;
}

/* ======================================================= */
/* === AJUSTES FINAIS E COMPLETOS PARA RESPONSIVO MOBILE === */
/* ======================================================= */

@media (max-width: 768px) {

    /* --- GERAL --- */
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 1rem;
        /* Diminui o espaçamento das seções */
    }

    .section-title,
    .hero-title {
        font-size: 2.2rem !important;
        /* CORRIGIDO: Reduz o tamanho de todos os títulos */
        line-height: 1.3 !important;
    }

    .section-description {
        font-size: 1rem;
    }

    /* --- MENU DE NAVEGAÇÃO --- */
    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* --- SEÇÃO HERO --- */
    .hero-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 auto;
        padding: 100px 1rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-logo-container {
        width: 140px;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .logo-glow {
        width: 180px !important;
        height: 180px !important;
    }

    .hero-logo {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-slogan {
        font-size: 0.85rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding: 0 0.5rem;
        line-height: 1.5;
        max-width: calc(100vw - 1rem) !important;
        box-sizing: border-box;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* --- LAYOUTS DE GRID --- */
    .about-grid,
    .services-grid,
    .results-grid,
    .start-grid,
    .contact-grid,
    .target-grid {
        grid-template-columns: 1fr;
        /* Força todas as colunas a empilharem */
        gap: 2rem;
    }

    .result-card {
        text-align: center;
        /* CORRIGIDO: Centraliza texto nos cards de resultado */
    }

    /* --- SEÇÕES DE PASSOS --- */
    .flow-desktop {
        display: none;
    }

    .flow-mobile {
        display: flex;
    }

    .flow-step-mobile .step-content,
    .start-step {
        text-align: center;
        /* CORRIGIDO: Centraliza todo o conteúdo dos passos */
    }

    .start-step-title,
    .step-title {
        min-height: 3.5rem;
        /* Garante alinhamento vertical dos títulos */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* --- SEÇÃO DE CONTATO --- */
    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-item {
        justify-content: center;
        /* CORRIGIDO: Centraliza conteúdo nos botões */
    }

    /* --- RODAPÉ --- */
    .footer-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
    }

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