/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0084ff;
    --primary-dark: #0a59fb;
    --primary-light: #00d4ff;
    --secondary: #7c3aed;
    --background: #00051c;
    --background-light: #07113d;
    --background-lighter: #0f1b52;
    --text-white: #FFFFFF;
    --text-gray: #94A3B8;
    --text-gray-dark: #64748B;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(0, 212, 255, 0.3);
    --shadow-primary: rgba(0, 212, 255, 0.25);
    --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --success: #10b981;
    --whatsapp: #25D366;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background: rgba(10, 26, 47, 0.95);
    border-bottom: 1px solid var(--border-light);
}

.header.scrolled {
    background: rgba(10, 26, 47, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo {
    cursor: pointer;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.3s ease;
}

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

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px var(--shadow-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00B8E6, #0052CC);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20b859, #075e54);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.active {
    max-height: 350px;
}

.mobile-nav-content {
    padding: 1rem 0;
    border-top: 1px solid var(--border-light);
}

.mobile-nav-link {
    display: block;
    background: none;
    border: none;
    color: var(--text-gray);
    width: 100%;
    text-align: left;
    padding: 0.75rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--text-white);
    padding-left: 0.5rem;
}

/* Hero Section */
.hero-parceiro {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, var(--background-light), var(--background));
}

.hero-bg .grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
    top: 20%;
    left: -10%;
    width: 25rem;
    height: 25rem;
    background: rgba(0, 212, 255, 0.15);
}

.orb-2 {
    bottom: 10%;
    right: -10%;
    width: 20rem;
    height: 20rem;
    background: rgba(124, 58, 237, 0.1);
    animation-delay: 1s;
}

.orb-3 {
    top: 50%;
    left: 30%;
    width: 15rem;
    height: 15rem;
    background: rgba(0, 102, 255, 0.08);
    animation-delay: 2s;
}

@keyframes pulse {

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

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--primary-light);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-gray-dark);
}

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

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray-dark);
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 20;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator:hover {
    color: var(--primary-light);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

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

.section-badge {
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary-light);
}

.section-subtitle {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card-hover:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-accent);
    transform: translateY(-8px);
}

.card-hover:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 102, 255, 0.1));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary-light);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-hint {
    font-size: 0.75rem;
    color: var(--primary-light);
    font-weight: 500;
}

/* Investimento Section */
.section-investimento {
    background: linear-gradient(135deg, var(--background-light), var(--background));
}

.investimento-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .investimento-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

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

.investimento-text .section-title {
    margin-bottom: 1rem;
}

.section-text {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.investment-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.investment-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.investment-feature i {
    color: var(--success);
    font-size: 1.125rem;
}

/* Price Card */
.price-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 102, 255, 0.05));
    border: 1px solid var(--border-accent);
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-light);
    margin: 1rem 0 0.5rem;
}

.price-value span {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-gray);
}

.price-period {
    color: var(--text-gray-dark);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.price-breakdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-gray-dark);
}

.price-breakdown strong {
    color: var(--primary-light);
}

.price-guarantee {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-gray-dark);
}

.price-guarantee i {
    color: var(--success);
    margin-right: 0.25rem;
}

/* Steps Timeline */
.steps-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-timeline {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
    }
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

@media (min-width: 768px) {
    .step-content h3 {
        font-size: 1.125rem;
    }
}

.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, var(--border-accent), transparent);
        margin-top: 1.5rem;
    }
}

/* Resultados Section */
/* Resultados Section */
.section-resultados {
    background: linear-gradient(135deg, var(--background-light), var(--background));
}

.resultados-header {
    text-align: center;
    margin-bottom: 3rem;
}

.resultados-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .resultados-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.resultado-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.resultado-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.resultado-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 102, 255, 0.1));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.resultado-icon i {
    font-size: 2rem;
    color: var(--primary-light);
}

.resultado-text {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.5;
}

.resultado-text strong {
    color: var(--primary-light);
    font-weight: 600;
}

/* Depoimento Section */
.depoimento-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(124, 58, 237, 0.05));
    border: 1px solid var(--border-accent);
    border-radius: 2rem;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.depoimento-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .depoimento-text {
        font-size: 1.125rem;
    }
}

.depoimento-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.25rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.author-store {
    font-size: 0.75rem;
    color: var(--text-gray-dark);
}

/* CTA Final */
.cta-final {
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content h2 span {
    color: var(--primary-light);
}

.cta-content p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* FAQ Section */
.section-faq {
    background: var(--background-light);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-accent);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.25rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.25rem 1.25rem;
}

/* Footer */
.footer {
    background: var(--background);
    border-top: 1px solid var(--border-light);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-logo-img {
    height: 35px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-gray-dark);
    font-size: 0.875rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-links-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-link {
    display: block;
    background: none;
    border: none;
    color: var(--text-gray-dark);
    font-size: 0.75rem;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-gray-dark);
    margin-bottom: 0.5rem;
}

.footer-credit {
    font-size: 0.7rem;
    color: var(--text-gray-dark);
}

.footer-credit a {
    color: var(--primary-light);
    text-decoration: none;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp i {
    font-size: 1.75rem;
    color: white;
}

.floating-tooltip {
    position: absolute;
    right: 4rem;
    background: var(--background-light);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.floating-whatsapp:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--success);
    font-size: 1.25rem;
}

.toast span {
    color: #1e293b;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 640px) {
    section {
        padding: 3rem 0;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .price-value {
        font-size: 3rem;
    }

    .card {
        padding: 1.5rem;
    }

    .depoimento-card {
        padding: 1.5rem;
    }

    .floating-whatsapp {
        width: 3rem;
        height: 3rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .floating-whatsapp i {
        font-size: 1.5rem;
    }
}