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

:root {
    /* Cores Principais */
    --color-primary: #00ff00;
    --color-primary-dark: #00cc00;
    --color-primary-light: #33ff33;
    --color-primary-deep: #006600;

    /* Tons de Cinza */
    --color-bg: #0c0c0c;
    --color-bg-dark: #0a0a0a;
    --color-bg-light: #1a1a1a;
    --color-text: #ffffff;
    --color-text-secondary: #999999;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 204, 0, 0.05) 100%);
    --gradient-dark: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header Fixo */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    transition: all 0.3s ease;
}

.header-scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 255, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo:hover {
    color: #00ff00;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #00ff00;
    transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #00ff00;
}

.cta-button {
    background: var(--gradient-primary);
    color: var(--color-bg);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

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

.mobile-menu ul {
    list-style: none;
    padding: 20px 5%;
}

.mobile-menu ul li {
    margin: 15px 0;
}

.mobile-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

/* Hero Section - Mensagem de Impacto */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background:
        radial-gradient(circle at 35% 50%, rgba(51, 255, 51, 0.18) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        linear-gradient(1deg, #0f1223 0%, rgba(15, 18, 35, 0.05) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(4px 4px at 40px 60px, rgba(0, 255, 0, 0.15) 50%, transparent 50%),
        radial-gradient(4px 4px at 100px 120px, rgba(0, 255, 0, 0.12) 50%, transparent 50%),
        radial-gradient(4px 4px at 200px 160px, rgba(0, 255, 0, 0.15) 50%, transparent 50%),
        radial-gradient(4px 4px at 300px 250px, rgba(0, 255, 0, 0.12) 50%, transparent 50%);
    background-size: 400px 400px;
    animation: particlesMove 15s linear infinite;
    opacity: 0.6;
}

@keyframes particlesMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-400px, -400px);
    }
}


.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-impact {
    color: #00ff00;
    font-size: 18px;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-title .highlight {
    color: var(--color-primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark), transparent);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
    font-weight: 400;
}

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

.btn-primary {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #000000;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 18px 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #00ff00;
    color: #00ff00;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 0, 0.2);
}

/* Hero Visual - Data Analytics */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.data-analytics {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 650px;
    background: transparent;
    overflow: hidden;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 45% 45% 10%;
    gap: 20px;
    padding: 20px;
}

.chart-title {
    color: #00ff00;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0.9;
}

/* Bar Chart */
.bar-chart {
    position: relative;
    padding: 20px;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bar-container {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 30px 20px;
    position: relative;
}

.bar-container::before {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 2px;
    background: rgba(0, 255, 0, 0.3);
}

.bar-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    position: relative;
    height: 100%;
    margin-top: 40px;
}

.bar-value {
    width: 100%;
    background: linear-gradient(to top, #00ff00, rgba(0, 255, 0, 0.3));
    border-radius: 6px 6px 0 0;
    position: absolute;
    bottom: 0;
    transition: none;
    animation: barRise 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards,
        barPulse 2s ease-in-out infinite;
    opacity: 0;
    min-height: 0;
    height: 0;
}

.bar-column:nth-child(1) .bar-value {
    --final-height: 85%;
    animation-delay: 0.2s;
}

.bar-column:nth-child(2) .bar-value {
    --final-height: 92%;
    animation-delay: 0.4s;
}

.bar-column:nth-child(3) .bar-value {
    --final-height: 78%;
    animation-delay: 0.6s;
}

.bar-column:nth-child(4) .bar-value {
    --final-height: 95%;
    animation-delay: 0.8s;
}

.value-label {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #00ff00;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 1s;
}

.bar-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #00ff00;
    font-size: 14px;
    opacity: 1;
}

/* Scatter Plot */
.scatter-plot {
    position: relative;
    padding: 20px;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 15px;
}

.axis-x,
.axis-y {
    position: absolute;
    background: rgba(0, 255, 0, 0.3);
}

.axis-x {
    bottom: 40px;
    left: 40px;
    width: calc(100% - 60px);
    height: 2px;
}

.axis-y {
    left: 40px;
    bottom: 40px;
    width: 2px;
    height: calc(100% - 80px);
}

.plot-points {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 20px;
    bottom: 40px;
}

.plot-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: pointAppear 0.5s ease-out forwards,
        pointGlow 2s ease-in-out infinite,
        pointPulse 3s ease-in-out infinite;
}

.plot-point {
    left: calc(var(--x) * 1%);
    bottom: calc(var(--y) * 1%);
}

/* Data Indicators */
.data-indicators {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 15px;
}

.indicator {
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 1.5s;
}

.indicator-value {
    font-size: 28px;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 5px;
}

.indicator-label {
    font-size: 14px;
    color: rgba(0, 255, 0, 0.8);
}

/* Animations */
@keyframes barRise {
    0% {
        height: 0;
        opacity: 0;
    }

    30% {
        opacity: 1;
        height: 0;
    }

    100% {
        opacity: 1;
        height: var(--final-height);
    }
}

@keyframes barPulse {

    0%,
    100% {
        filter: brightness(1);
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    }

    50% {
        filter: brightness(1.2);
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pointAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes pointGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.8);
    }
}

@keyframes pointPulse {

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

    50% {
        transform: translate(-50%, -50%) scale(1.30);
    }
}

.plot-point:nth-child(1) {
    animation-delay: 0.2s;
}

.plot-point:nth-child(2) {
    animation-delay: 0.4s;
}

.plot-point:nth-child(3) {
    animation-delay: 0.6s;
}

.plot-point:nth-child(4) {
    animation-delay: 0.8s;
}

.plot-point:nth-child(5) {
    animation-delay: 1.0s;
}

.plot-point:nth-child(6) {
    animation-delay: 1.2s;
}

.plot-point:nth-child(7) {
    animation-delay: 1.4s;
}

.plot-point:nth-child(8) {
    animation-delay: 1.6s;
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.12;
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

/* Form de Captação */
.lead-capture {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lead-capture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
    animation: lineMove 4s linear infinite;
}

@keyframes lineMove {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.lead-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    text-align: center;
}

.lead-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 20px;
}

.lead-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lead-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-input,
.form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2300ff00' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-select option {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

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

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #00ff00;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.form-submit {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #000000;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 0, 0.4);
}

/* Como Funciona Section */
.how-it-works {
    background: #f8f9fa;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    color: #00cc00;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #1a1a1a;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-title .highlight {
    color: #00cc00;
    position: relative;
}

.section-description {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* .process-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 80px;
} */

/* .process-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
} */

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.process-card:hover::before {
    transform: translateX(0);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 255, 0, 0.15);
    border-color: rgba(0, 255, 0, 0.3);
}

.process-icon-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.process-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dashed #00ff00;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.08);
    transition: all 0.4s ease;
}

.process-card:hover .process-icon {
    transform: rotate(360deg);
    background: rgba(0, 255, 0, 0.15);
    border-style: solid;
}

.process-content h4 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
}

.process-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    font-weight: 400;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
    .process-card {
        flex: 1 1 calc(50% - 20px);
        /* 2 cards por linha no tablet/celular */
    }
}

@media (max-width: 480px) {
    .process-card {
        flex: 1 1 100%;
        /* 1 card por linha no celular pequeno */
    }
}

/* Por que escolher Section */
.why-choose {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.container-choose {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.choose-banner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.banner-gradient {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #191919 10%, transparent 100%);
}

.banner-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.choose-banner:hover .banner-image {
    opacity: 1;
}

.choose-subtitle {
    color: #00ff00;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.choose-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #ffffff;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.choose-title .highlight {
    color: #00ff00;
}

.choose-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 50px;
    font-weight: 400;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.benefit-icon {
    flex-shrink: 0;
}

.cta-button-choose {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #000000;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button-choose:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 0, 0.4);
}

/* Produtos Section */
.products-section {
    background: #f8f9fa;
    padding: 120px 0;
    position: relative;
}

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

.product-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 255, 0, 0.3);
}

.product-content h4 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 800;
}

.product-content h5 {
    font-size: 20px;
    color: #1a1a1a;
    margin: 25px 0 15px;
    font-weight: 700;
}

.product-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}

.product-features,
.product-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.product-features li,
.product-benefits li {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.product-features li::before,
.product-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%2300cc00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.product-logo {
    display: block;
    height: 140px;
    width: auto;
    margin: 0px auto 25px;
    object-fit: contain;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 30px;
    text-decoration: none;
    color: #ffffff;
}

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

.footer-logo:hover {
    color: #00ff00;
    transition: color 0.3s ease;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #00ff00;
    color: #000000;
    border-color: #00ff00;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff00;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00ff00;
}

.newsletter-form button {
    background: #00ff00;
    color: #000000;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
}

.copyright a {
    color: #00ff00;
    text-decoration: none;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00ff00;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Responsividade */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

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

    header .cta-button {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .choose-banner {
        min-height: 400px;
        margin-top: 30px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .whatsapp-button span {
        display: none;
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 0, 0.9);
    color: #000000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top:hover {
    background: #00ff00;
    transform: translateY(-3px);
}

.scroll-to-top.visible {
    display: flex;
}

.process-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* permite quebrar no mobile */
    justify-content: center;
}

.process-card {
    flex: 1 1 calc(25% - 20px);
    /* 4 cards por linha no desktop */
    max-width: 250px;
    /* largura máxima */
    background: #ffffff;
    /* cor de fundo opcional */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
    box-sizing: border-box;
}

.process-icon-wrapper {
    margin-bottom: 10px;
}

.process-icon svg {
    display: block;
    margin: auto;
}

.process-content h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.process-content p {
    font-size: 14px;
    line-height: 1.4;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
    .process-card {
        flex: 1 1 calc(50% - 20px);
        /* 2 cards por linha no tablet/celular */
    }
}

@media (max-width: 480px) {
    .process-card {
        flex: 1 1 100%;
        /* 1 card por linha no celular pequeno */
    }
}