/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    color: white;
    padding: 25px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.logo span {
    color: #ffcc00;
}

.tagline {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.header-badge {
    background-color: #ff3333;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 10%;
    background-color: #f5f7fa;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #0066cc;
}

.hero h1 span {
    color: #ff6600;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 600px;
    color: #444;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.package-highlight {
    background-color: #ffcc00;
    color: #0066cc;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.package-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.package-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    font-size: 1.1rem;
}

.package-item i {
    color: #0066cc;
    font-size: 1.3rem;
}

/* Botão CTA */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6600 0%, #ff9933 100%);
    color: white;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
    text-align: center;
    margin-top: 15px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.4);
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Benefícios */
.benefits {
    padding: 90px 10%;
    text-align: center;
    background-color: white;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #ff6600);
    bottom: -15px;
    left: 25%;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.benefit-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #0066cc;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 2.8rem;
    color: #ff6600;
    margin-bottom: 25px;
}

.benefit-card h3 {
    margin-bottom: 20px;
    color: #0066cc;
    font-size: 1.5rem;
}

.benefit-card p {
    color: #555;
    font-size: 1.05rem;
}

/* Seção Ebook */
.ebook-section {
    padding: 90px 10%;
    background-color: #f0f7ff;
    max-width: 1400px;
    margin: 0 auto;
}

.ebook-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background-color: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ebook-image {
    flex: 1;
    text-align: center;
}

.ebook-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
}

.ebook-content {
    flex: 1;
}

.ebook-content h2 {
    font-size: 2.2rem;
    color: #0066cc;
    margin-bottom: 25px;
    line-height: 1.3;
}

.ebook-content h2 span {
    color: #ff6600;
}

.ebook-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

.ebook-features {
    list-style: none;
    margin-bottom: 40px;
}

.ebook-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ebook-features i {
    color: #ff6600;
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Depoimentos */
.testimonials {
    padding: 90px 10%;
    background-color: white;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #e0e0e0;
}

.testimonial-card:before {
    content: '"';
    font-size: 6rem;
    color: rgba(0, 102, 204, 0.05);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    color: #444;
}

.testimonial-author {
    font-weight: bold;
    color: #0066cc;
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-role {
    font-size: 0.95rem;
    color: #666;
    font-weight: normal;
    display: block;
    font-style: normal;
}

.testimonial-author i {
    font-size: 1.5rem;
    color: #0066cc;
}

/* Garantia */
.guarantee {
    padding: 100px 10%;
    text-align: center;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: white;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.guarantee:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.08)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
    background-size: 40px 40px;
    opacity: 0.5;
}

.guarantee-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-badge {
    background-color: white;
    color: #ff6600;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.guarantee h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.guarantee p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Rodapé CTA */
.footer-cta {
    padding: 100px 10%;
    text-align: center;
    background: linear-gradient(135deg, #004080 0%, #002b5a 100%);
    color: white;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.08)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
    background-size: 40px 40px;
    opacity: 0.3;
}

.footer-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.urgency-badge {
    background-color: #ff3333;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.footer-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Rodapé */
footer {
    background-color: #002b5a;
    color: white;
    text-align: center;
    padding: 40px 10%;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffcc00;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.disclaimer {
    margin-top: 20px;
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero, .ebook-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content, .ebook-content {
        padding-right: 0;
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .package-highlight, .ebook-content p {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero, .benefits, .ebook-section, .testimonials, .guarantee, .footer-cta {
        padding: 70px 5%;
    }
    
    .hero h1, .footer-cta h2, .guarantee h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .ebook-container {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .hero h1, .footer-cta h2, .guarantee h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 28px;
    }
    
    .package-highlight {
        padding: 25px 20px;
    }
    
    .package-item {
        font-size: 1rem;
    }
    
    .benefit-card, .testimonial-card {
        padding: 30px 20px;
    }
    
    .ebook-container {
        padding: 30px 20px;
    }
    
    .ebook-content h2 {
        font-size: 1.8rem;
    }
}