/* ===================================
   Reset e Variáveis Globais
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --primary-blue: #0A2463;
    --primary-dark: #051633;
    --accent-orange: #FB8500;
    --accent-yellow: #FFB703;
    --success-green: #06D6A0;
    
    /* Cores neutras */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --medium-gray: #ADB5BD;
    --dark-gray: #495057;
    --black: #212529;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #0A2463 0%, #051633 100%);
    --gradient-accent: linear-gradient(135deg, #FFB703 0%, #FB8500 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 36, 99, 0.95) 0%, rgba(5, 22, 51, 0.98) 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
    
    /* Tipografia */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Crimson Pro', serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   Estilos Globais
   =================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

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

/* ===================================
   Botão WhatsApp Flutuante
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    color: var(--white);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

/* ===================================
   Header
   =================================== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
    z-index: 100;
    transition: all var(--transition-normal);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.logo-icon {
    font-size: 2rem;
}

.logo-sub {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--accent-orange);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.cta-button-header {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-accent);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.cta-button-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(251, 133, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 183, 3, 0.1) 0%, transparent 50%);
    background-size: 100% 100%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    flex: 1;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.cta-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(251, 133, 0, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(251, 133, 0, 0.4);
}

.cta-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.hero-guarantee {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.hero-image {
    animation: fadeInRight 0.8s ease 0.2s both;
}

/* ===================================
   Dashboard Mockup
   =================================== */
.dashboard-mockup {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid var(--light-gray);
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
}

.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #28CA42; }

.mockup-title {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark-gray);
}

.mockup-content {
    padding: 2.5rem;
}

.result-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--gradient-primary);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.result-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    animation: countUp 1.5s ease;
}

.result-period {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.progress-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-item span {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary-dark);
}

.progress-bar {
    height: 12px;
    background: var(--light-gray);
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 100px;
    animation: progressFill 1.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes progressFill {
    from { width: 0; }
}

/* ===================================
   Problem Section
   =================================== */
.problem {
    padding: 6rem 0;
    background: var(--off-white);
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(10, 36, 99, 0.1);
    color: var(--primary-blue);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-card-highlight {
    background: var(--gradient-primary);
    color: var(--white);
}

.problem-card-highlight h3,
.problem-card-highlight p {
    color: var(--white);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================
   Solution Section
   =================================== */
.solution {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.solution-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    z-index: -1;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.tech-visual {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.tech-circle {
    position: absolute;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.tech-circle-1 {
    width: 100%;
    height: 100%;
    border: 3px dashed var(--primary-blue);
    opacity: 0.3;
}

.tech-circle-2 {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    border: 3px dashed var(--accent-orange);
    opacity: 0.4;
    animation-duration: 15s;
    animation-direction: reverse;
}

.tech-circle-3 {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border: 3px dashed var(--accent-yellow);
    opacity: 0.5;
    animation-duration: 10s;
}

.tech-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    animation: float 3s ease-in-out infinite;
}

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

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--light-gray);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-md);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    opacity: 0.3;
    line-height: 1;
}

.feature-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.feature-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(251, 133, 0, 0.1);
    color: var(--accent-orange);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
}

/* ===================================
   How it Works Section
   =================================== */
.how-it-works {
    padding: 6rem 0;
    background: var(--off-white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
    align-items: start;
    margin-top: 3rem;
}

.step {
    grid-column: span 1;
}

.step:nth-child(odd) {
    grid-column: span 2;
}

.step-arrow {
    font-size: 2rem;
    color: var(--accent-orange);
    text-align: center;
    padding-top: 2.5rem;
    grid-column: span 1;
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(251, 133, 0, 0.3);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* ===================================
   Guarantee Section
   =================================== */
.guarantee {
    padding: 6rem 0;
    background: var(--white);
}

.guarantee-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.guarantee-badge {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06D6A0 0%, #04B385 100%);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(6, 214, 160, 0.3);
}

.shield-icon {
    font-size: 4rem;
}

.guarantee-text h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guarantee-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.check-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 214, 160, 0.1);
    color: var(--success-green);
    font-weight: 800;
    border-radius: 50%;
}

.testimonial {
    padding: 3rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -2rem;
    left: -1rem;
}

.testimonial-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 50%;
}

.author-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Final CTA Section
   =================================== */
.final-cta {
    padding: 6rem 0;
    background: var(--off-white);
}

.cta-box {
    padding: 4rem;
    background: var(--gradient-primary);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-small {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
}

.urgency-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.timer-icon {
    font-size: 2rem;
}

.timer-text {
    color: var(--white);
    text-align: left;
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 3rem 0 2rem;
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
}

.footer-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--accent-yellow);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}

/* ===================================
   Responsividade
   =================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .tech-visual {
        width: 250px;
        height: 250px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        grid-column: span 1 !important;
    }
    
    .step-arrow {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .guarantee-badge {
        margin: 0 auto;
    }
    
    .guarantee-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .check-icon {
        margin: 0 auto;
    }
    
    .cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-large {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    .result-value {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .testimonial {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
}
