/* Estilos Globais */
:root {
    --color-primary: #1a237e;
    --color-secondary: #ffd700;
    --color-accent: #00c853;
    --color-cta: #ff5722;
    --color-dark: #0d1b2a;
    --color-light: #415a77;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray: #f5f5f5;
    --color-text: #333333;
    --font-headline: 'Montserrat', sans-serif;
    --font-subheadline: 'Raleway', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-button: 'Poppins', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

/* Botões */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-family: var(--font-button);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cta), #e64a19);
    color: var(--color-white);
    border: none;
    font-size: 18px;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ff7043, var(--color-cta));
}

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

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

/* Navegação */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 35, 126, 0.95);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
}

.nav-menu a {
    color: var(--color-white);
    margin: 0 15px;
    font-weight: 600;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-dark), var(--color-primary));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    color: var(--color-white);
    padding-right: 30px;
}

.headline {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subheadline {
    font-family: var(--font-subheadline);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--color-secondary);
}

.hero-cta {
    margin: 30px 0;
}

.hero-trust {
    display: flex;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: var(--color-white);
}

.trust-item i {
    margin-right: 8px;
    color: var(--color-secondary);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.floating-numbers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-numbers span {
    position: absolute;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    animation: float 6s infinite ease-in-out;
}

.floating-numbers span:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-numbers span:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-numbers span:nth-child(3) {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.floating-numbers span:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

.floating-numbers span:nth-child(5) {
    top: 40%;
    left: 20%;
    animation-delay: 4s;
}

.floating-numbers span:nth-child(6) {
    bottom: 40%;
    right: 20%;
    animation-delay: 5s;
}

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

/* Introdução */
.intro {
    background-color: var(--color-white);
    padding: 60px 0;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
}

.highlight {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 22px;
}

/* Problema e Agitação */
.problem {
    background-color: var(--color-gray);
    text-align: center;
}

.problem h2 {
    font-family: var(--font-headline);
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 50px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-item {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.problem-icon {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.problem-item h3 {
    font-family: var(--font-subheadline);
    margin-bottom: 15px;
    color: var(--color-primary);
}

.problem-result {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}

.problem-result h3 {
    color: var(--color-secondary);
    font-size: 24px;
}

/* Solução */
.solution {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.solution-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.solution-box h2 {
    font-family: var(--font-headline);
    font-size: 32px;
    color: var(--color-primary);
}

.solution-box h3 {
    font-family: var(--font-headline);
    font-size: 42px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.solution-box p {
    font-size: 20px;
    margin-bottom: 30px;
}

.solution-image {
    margin-top: 40px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Benefícios */
.benefits {
    background-color: var(--color-white);
    text-align: center;
}

.benefits h2 {
    font-family: var(--font-headline);
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background-color: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

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

.benefit-icon {
    font-size: 50px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-family: var(--font-subheadline);
    font-size: 24px;
    color: var(--color-primary);
}

.benefit-card h4 {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.benefit-card ul {
    text-align: left;
    list-style-type: none;
}

.benefit-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.benefit-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.bonus {
    border: 2px solid var(--color-secondary);
}

.bonus-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.benefits-cta {
    margin-top: 40px;
}

/* Depoimentos */
.testimonials {
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    color: var(--color-white);
    text-align: center;
}

.testimonials h2 {
    font-family: var(--font-headline);
    font-size: 36px;
    color: var(--color-white);
    margin-bottom: 50px;
}

.testimonials-slider {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 0 15px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--color-secondary);
}

.testimonial-stars {
    color: var(--color-secondary);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

/* Garantia */
.guarantee {
    background-color: var(--color-white);
}

.guarantee-box {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.guarantee-icon {
    flex: 0 0 200px;
    margin-right: 30px;
    animation: pulse 2s infinite;
}

.guarantee-content h2 {
    font-family: var(--font-headline);
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.guarantee-content p {
    font-size: 18px;
}

/* Escassez e Urgência */
.urgency {
    background-color: #fff8e1;
}

.urgency-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.urgency-header {
    background-color: #ff3d00;
    color: var(--color-white);
    padding: 15px;
    text-align: center;
}

.urgency-header h2 {
    font-family: var(--font-headline);
    font-size: 24px;
    margin: 0;
}

.urgency-content {
    padding: 30px;
    text-align: center;
}

.urgency-counter {
    margin: 30px 0;
}

.counter-label {
    font-size: 18px;
    margin-bottom: 10px;
}

.counter-number {
    font-size: 72px;
    font-weight: 900;
    color: #ff3d00;
    line-height: 1;
}

.counter-text {
    font-size: 18px;
    font-weight: 600;
}

.urgency-progress {
    margin: 30px 0;
}

.progress-bar {
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    width: 81%;
    background: linear-gradient(to right, var(--color-accent), #ff3d00);
    border-radius: 10px;
}

.progress-text {
    font-size: 16px;
    color: #757575;
}

.countdown {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.countdown-item {
    margin: 0 10px;
    text-align: center;
}

.countdown-number {
    font-size: 36px;
    font-weight: 700;
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 5px;
    box-shadow: var(--shadow-md);
}

.countdown-label {
    font-size: 14px;
    color: #757575;
}

/* Preço e CTA */
.pricing {
    background-color: var(--color-white);
}

.pricing-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 20px;
    text-align: center;
}

.pricing-header h2 {
    font-family: var(--font-headline);
    font-size: 28px;
    margin: 0;
}

.pricing-content {
    padding: 40px;
    text-align: center;
}

.pricing-original {
    margin-bottom: 10px;
}

.pricing-original .pricing-label {
    font-size: 18px;
    color: #757575;
}

.pricing-original .pricing-value {
    font-size: 24px;
    color: #757575;
    text-decoration: line-through;
    margin-left: 10px;
}

.pricing-current {
    margin-bottom: 30px;
}

.pricing-current .pricing-label {
    font-size: 20px;
    font-weight: 600;
}

.pricing-current .pricing-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-accent);
    margin-left: 10px;
}

.pricing-installment {
    display: block;
    font-size: 16px;
    color: #757575;
    margin-top: 5px;
}

.pricing-cta {
    margin: 30px 0;
}

.pricing-security {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.security-item {
    display: flex;
    align-items: center;
    margin: 0 15px 10px;
    color: #757575;
}

.security-item i {
    margin-right: 8px;
    color: var(--color-primary);
}

.pricing-ps {
    font-style: italic;
    color: #757575;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ */
.faq {
    background-color: #f5f5f5;
}

.faq h2 {
    font-family: var(--font-headline);
    font-size: 36px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-family: var(--font-subheadline);
    font-size: 18px;
    margin: 0;
    color: var(--color-primary);
}

.faq-toggle {
    color: var(--color-primary);
    font-size: 18px;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle .fa-plus {
    transform: rotate(45deg);
}

/* Fechamento */
.closing {
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    color: var(--color-white);
    text-align: center;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
}

.closing h2 {
    font-family: var(--font-headline);
    font-size: 36px;
    color: var(--color-secondary);
    margin-bottom: 30px;
}

.closing p {
    font-size: 20px;
    margin-bottom: 20px;
}

.closing-cta {
    margin-top: 40px;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-white);
    margin: 0 15px 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-social {
    display: flex;
}

.footer-social a {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-disclaimer {
    text-align: center;
    font-size: 14px;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

/* Notificações em Tempo Real */
.live-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 15px;
    display: flex;
    align-items: center;
    max-width: 300px;
    z-index: 999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
}

.live-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-icon {
    background-color: var(--color-accent);
    color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.notification-content {
    font-size: 14px;
}

.notification-content p {
    margin: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .headline {
        font-size: 36px;
    }
    
    .subheadline {
        font-size: 20px;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .nav-menu, .nav-cta {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .headline {
        font-size: 30px;
    }
    
    .subheadline {
        font-size: 18px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-item {
        margin: 0 5px;
    }
    
    .countdown-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        margin: 20px 0;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .headline {
        font-size: 26px;
    }
    
    .subheadline {
        font-size: 16px;
    }
    
    .hero-trust {
        flex-direction: column;
    }
    
    .trust-item {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .pricing-current .pricing-value {
        font-size: 36px;
    }
    
    .countdown-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .countdown-label {
        font-size: 12px;
    }
}
