/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e3a5f; /* Azul petróleo escuro */
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #1e3a5f; /* Azul petróleo escuro */
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Destaques */
.highlight {
    color: #dc2626; /* Vermelho */
    font-weight: 800;
}

/* Botões CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.cta-button.large {
    padding: 24px 48px;
    font-size: 1.3rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-headline {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e3a5f;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.4rem;
    color: #475569;
    margin-bottom: 3rem;
    font-weight: 500;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.problem h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.8rem;
}

.intro-text {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #475569;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 4rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #dc2626;
}

.problem-item i {
    color: #dc2626;
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.reality-check {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #6b7280; /* Marrom/verde oliva */
}

.ready-question {
    font-size: 2.2rem;
    color: #dc2626;
    margin-top: 2rem;
    font-weight: 900;
}

/* What You'll Learn Section */
.what-learn {
    padding: 80px 0;
    background: #white;
}

.what-learn h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.what-learn h2 i {
    color: #16a34a;
    margin-right: 15px;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.learn-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: px solid #6b7280; /* Marrom/verde oliva */
}

.learn-item i {
  background-color: #885432; /* Marrom */
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* Ícone: fa-box → azul */
.learn-item i.fa-box {
  background: #1e73e8; /* Azul */
}

/* Ícone: fa-calendar-alt → roxo */
.learn-item i.fa-calendar-alt {
  background: #8e44ad; /* Roxo */
}

/* Ícone: fa-home → verde */
.learn-item i.fa-home {
  background: #169c74; /* Verde */
}

/* Ícone: fa-users → laranja */
.learn-item i.fa-users {
  background: #f26522; /* Laranja */
}

.learn-item i {
    color: #fff; /* Marrom/verde oliva */
    font-size: 1.8rem;
    margin-top: 5px;
    flex-shrink: 0;

}

/* Modules Section */
.modules {
    padding: 80px 0;
    background: #f1f5f9;

}

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

.module-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
}

.module-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.module-card h3 {
    margin-bottom: 20px;
    color: #1e3a5f;
}

.module-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

/* Product Description */
.product-description {
    padding: 80px 0;
    background: white;
}

.product-description h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.product-intro {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e3a5f;
}

.product-includes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #1e3a5f;
 /* Marrom/verde oliva */
}

.include-item i {
    color: #6b7280; /* Marrom/verde oliva */
    font-size: 1.5rem;
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
    background: #f1f5f9;
}

.target-audience h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.audience-card {
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.audience-card.positive {
    background: white;
    border-left: 6px solid #16a34a;
}

.audience-card.negative {
    background: white;
    border-left: 6px solid #dc2626;
}

.audience-card h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.audience-card.positive h3 i {
    color: #16a34a;
}

.audience-card.negative h3 i {
    color: #dc2626;
}

.audience-card ul {
    list-style: none;
}

.audience-card li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.1rem;
}

.audience-card li:last-child {
    border-bottom: none;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: white;
}

.social-proof h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1e3a5f;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #6b7280; /* Marrom/verde oliva */
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #475569;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: #1e3a5f;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: white;
    color: black;
    text-align: center;
}

.offer-warning {
   
    gap: 15px;
    margin-bottom: 2rem;
}

.offer-warning i {
    color: #fbbf24;
    font-size: 5rem;
}

.offer-warning h2 {
    color: black;
    font-size: 2.8rem;
}

.offer p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.price-section {
    margin: 3rem 0;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.price-label {
    font-size: 1.3rem;
    color: #cbd5e1;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: #fbbf24;
}

.price-justification {
    font-size: 1.1rem;
    color: #cbd5e1;
}

.offer-benefits {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
}

.benefit-item i {
    color: #16a34a;
    font-size: 1.5rem;
}

.offer-summary {
    margin: 3rem 0;
}

.offer-summary p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Guarantee */
.guarantee {
    padding: 60px 0;
    background: #white;
    text-align: center;
    border-top: 4px solid #16a34a;
}

.guarantee h2 {
    color: #black;
    margin-bottom: 1.5rem;
}

.guarantee h2 i {
    margin-right: 10px;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 2rem;
}

.final-cta h2 i {
    color: #dc2626;
    margin-right: 10px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f1f5f9;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq h2 i {
    color: #6b7280; /* Marrom/verde oliva */
    margin-right: 10px;
}

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

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #1e3a5f;
}

.faq-question i {
    color: #6b7280; /* Marrom/verde oliva */
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 200px;
}

/* Final Message */
.final-message {
    padding: 80px 0;
    background: white;
}

.final-message h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #dc2626;
}

.final-message h2 i {
    margin-right: 10px;
}

.final-message blockquote {
    text-align: center;
    font-size: 1.5rem;
    font-style: italic;
    margin: 2rem 0;
    padding: 20px;
    background: #f8fafc;
    border-left: 6px solid #6b7280; /* Marrom/verde oliva */
    border-radius: 8px;
}

.final-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 20px;
}

.final-list li {
    padding: 5px 0;
    font-size: 1.1rem;
}

.final-focus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 3rem;
    padding: 30px;
    background: #f1f5f9;
    border-radius: 12px;
    border: 2px solid #6b7280; /* Marrom/verde oliva */
}

.final-focus i {
    color: #6b7280; /* Marrom/verde oliva */
    font-size: 2rem;
}

.final-focus span {
    font-size: 1.3rem;
    color: #1e3a5f;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #1e3a5f;
    color: white;
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 20px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .problem-item,
    .learn-item {
        flex-direction: column;
        text-align: center;
    }
    
    .problem-item i,
    .learn-item i {
        margin-top: 0;

    }
}




.crisis-list {
  margin-bottom: 40px;
}

.crisis-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 12px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.crisis-item i {
  color: #dc2626;
  margin-right: 12px;
  font-size: 16px;
}


.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.2); /* preto com transparência */
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  color: white;
}
.security-badge i {
  font-size: 1rem;
}
