:root {
    --bg-dark: #03151D;
    --bg-darker: #010c11;
    --teal: #00A3AD;
    --teal-glow: rgba(0, 163, 173, 0.4);
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-text: #A0AEC0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-accent: 'Dancing Script', cursive;
}

.script-font {
    font-family: var(--font-accent);
    color: var(--teal);
    font-size: 1.2em;
    font-weight: 700;
}

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

html {
    scroll-behavior: smooth;
}

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

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

.center {
    text-align: center;
}

.section-header.center, .solution-content.center {
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.header {
    background: rgba(3, 21, 29, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
}

.logo img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

/* Buttons */
.btn {
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--teal);
    border-radius: 50px;
}

.btn-primary:hover {
    background: var(--teal);
    box-shadow: 0 0 15px var(--teal-glow);
}

.btn-teal {
    background: var(--teal);
    color: var(--white);
    border: none;
    box-shadow: 0 8px 15px rgba(0, 163, 173, 0.2);
}

.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px var(--teal-glow);
}

.btn-rounded {
    border-radius: 50px;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-pill-special {
    background-color: #195863;
    color: #ffffff;
    border-radius: 50px;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    font-weight: 400;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    box-shadow: none;
    letter-spacing: normal;
}

.btn-pill-special:hover {
    background-color: #1e6b78;
    color: #ffffff;
}

.btn-pill-special .arrow-icon {
    margin-left: 1.5rem;
    width: 28px;
    height: 28px;
}

/* Hero Section */
.hero {
    padding: 200px 0 100px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 800px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.hero-glow {
    position: absolute;
    top: 0;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.badge {
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: block;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.hero-title .highlight {
    color: var(--teal);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin: 0 auto 3rem auto;
    max-width: 600px;
}

.icon-teal {
    color: var(--teal);
    width: 24px;
    height: 24px;
}

.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tech-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--teal);
    opacity: 0.3;
    animation: drift 10s infinite linear alternate;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(30px, 30px); }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(0, 163, 173, 0.25);
    box-shadow: 0 0 80px rgba(0, 163, 173, 0.15);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: float 7s ease-in-out infinite;
}

.hero-img-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 80px rgba(0, 163, 173, 0.25);
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.03) translateY(-12px); }
}

.btn-glow {
    box-shadow: 0 0 20px var(--teal-glow);
    animation: glow-pulse 2s infinite ease-in-out;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px var(--teal-glow); }
    50% { box-shadow: 0 0 40px var(--teal); }
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--glass-border);
}

/* Visual Mockup/Abstract */
.tech-abstract {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orb {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 80%);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 4s infinite ease-in-out;
}

.ring {
    position: absolute;
    border: 1px solid var(--teal-glow);
    border-radius: 50%;
    animation: rotate 10s infinite linear;
}

.ring:nth-child(2) { width: 300px; height: 300px; border-style: dashed; }
.ring:nth-child(3) { width: 350px; height: 350px; animation-duration: 15s; animation-direction: reverse; }
.ring:nth-child(4) { width: 400px; height: 400px; border-style: dotted; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.9; }
}

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

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

.section-header.center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.section-description {
    color: var(--gray-text);
    font-size: 1.1rem;
}

/* Solution Two-Column */
.solution-two-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.solution-image {
    display: flex;
    justify-content: center;
}

.solution-img-wrapper-float {
    position: relative;
    width: 600px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rocket-particles-container {
    position: relative;
}

#neon-dust-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.neon-dust-particle {
    position: absolute;
    top: 50%;
    left: 30%;
    border-radius: 50%;
    background: #00e5ff;
    box-shadow: 0 0 15px 5px rgba(0, 229, 255, 0.8), 0 0 30px 10px rgba(0, 163, 173, 0.6);
    filter: blur(2px);
    opacity: 0;
    will-change: transform, opacity;
}

@keyframes crumble {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { opacity: 0.8; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

.solution-img-float {
    width: 110%;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 163, 173, 0.4));
    z-index: 2;
    position: relative;
}



.steps-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    max-width: 400px;
}

.step-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0, 163, 173, 0.1);
    border: 1px solid rgba(0, 163, 173, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.step-item p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.section-title.left, .section-description.left {
    text-align: left;
}

/* Target Section */
.target {
    padding: 100px 0;
}

.target-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.target-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 1rem 2.5rem;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.target-item:hover {
    border-color: var(--teal);
    background: rgba(0, 163, 173, 0.08);
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: radial-gradient(circle at bottom, #002d33, var(--bg-dark) 50%);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--teal);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.pricing-value {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
}

.amount {
    font-size: 5rem;
    font-weight: 800;
    color: var(--teal);
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    font-weight: 300;
    font-size: 1.1rem;
    color: #e2e8f0;
    padding: 0.5rem 0;
}

.faq-answer {
    padding-top: 1rem;
    color: var(--gray-text);
    display: none;
}

/* Footer */
.footer {
    padding: 100px 0 60px;
    background: #000000;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 200px;
    width: auto;
    opacity: 1;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.company-details {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-bottom: 0.5rem;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: #cbd5e0;
    font-weight: 400;
}

.developer {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 0.5rem;
}

.payment-methods-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    opacity: 0.95;
}

.pagamentos-img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.payment-methods span {
    font-size: 0.8rem;
    color: var(--gray-text);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-visual, .solution-image { display: none; }
    .section-title.left, .section-description.left { text-align: center; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .header-container { padding: 0.5rem 1rem; }
    .logo img { height: 70px; }
    .nav .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero { padding: 160px 0 60px; min-height: auto; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 2rem; }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        padding: 1.2rem;
        border-radius: 25px;
    }
    .stat-divider { display: none; }
    
    .problem, .solution, .target, .pricing, .faq { padding: 60px 0; }
    .section-title { font-size: 2rem; }
    .section-description { font-size: 1rem; }
    
    .pricing-card { padding: 2.5rem 1.5rem; }
    .amount { font-size: 4rem; }
    .btn-pill-special {
        font-size: 1.2rem;
        padding: 1.2rem;
        width: 100%;
    }
    .btn-pill-special .arrow-icon { width: 24px; height: 24px; margin-left: 1rem; }
    
    .target-grid { gap: 1rem; }
    .target-item { padding: 0.8rem 1.2rem; font-size: 0.95rem; }
    
    .footer { padding: 60px 0 40px; }
    .footer-logo { height: 120px; }
}

@media (max-width: 480px) {
    .logo img { height: 50px; }
    .nav .btn-primary {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .hero { padding: 130px 0 50px; }
    .hero-title { font-size: 1.8rem; }
    .badge { font-size: 0.7rem; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 1rem; }
    
    .btn-large { padding: 1rem; font-size: 1rem; width: 100%; text-align: center; }
    
    .hero-stats { gap: 1rem; flex-direction: column; width: 100%; align-items: center; }
    .stat-divider { display: block; width: 100%; height: 1px; }
    
    .section-title { font-size: 1.7rem; }
    
    .step-item h3 { font-size: 1.1rem; }
    .step-item p { font-size: 0.9rem; }
    
    .amount { font-size: 3rem; }
    .pricing-card { padding: 1.5rem; }
    
    .btn-pill-special { font-size: 1.1rem; padding: 1rem; }
    .btn-pill-special .arrow-icon { margin-left: 0.5rem; }
    
    .faq-question { font-size: 1rem; align-items: center; }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 340px;
    background: rgba(3, 21, 29, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 163, 173, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    z-index: 9999;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    width: 100%;
}

.cookie-content p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: var(--teal);
    text-decoration: underline;
}

.cookie-content button {
    width: 100%;
    padding: 0.8rem;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }
}
