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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 280px;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #ea580c, #dc2626);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button i {
    font-size: 1.1em;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 80px 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;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #111827;
}

.hero-headline .highlight {
    color: #f97316;
    display: block;
    margin-bottom: 15px;
}

.hero-subheadline {
    font-size: 1.5rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 40px;
    line-height: 1.4;
}

.price-box {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    border: 3px solid #f97316;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.1);
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    display: block;
    margin-bottom: 8px;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: #f97316;
    display: block;
}

.price-detail {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Product Mockup */
.product-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.mockup-container {
    position: relative;
    perspective: 1000px;
}

.ebook-cover {
    width: 280px;
    height: 380px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ebook-cover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.ebook-cover:hover {
    transform: rotateY(-10deg) rotateX(2deg);
}

.cover-content {
    padding: 40px 25px;
    color: white;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.cover-content h3 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cover-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.cover-content p {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.mockup-shadow {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Social Proof Section */
.social-proof-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar .avatar-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.testimonial-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial-author strong {
    color: #111827;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #f97316;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    border-radius: 12px;
    border-left: 5px solid #22c55e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    font-size: 2rem;
    color: #22c55e;
    min-width: 50px;
}

.benefit-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
}

/* Offer Guarantee Section */
.offer-guarantee-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.offer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.offer-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 40px;
    line-height: 1.6;
}

.guarantee-box {
    background: white;
    border: 2px solid #22c55e;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.1);
}

.guarantee-icon {
    font-size: 3rem;
    color: #22c55e;
    min-width: 80px;
}

.guarantee-text strong {
    font-size: 1.3rem;
    color: #111827;
    display: block;
    margin-bottom: 10px;
}

.guarantee-text p {
    color: #374151;
    font-size: 1.1rem;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.urgency-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.urgency-text {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.timer-item {
    background: rgba(249, 115, 22, 0.2);
    border: 2px solid #f97316;
    border-radius: 12px;
    padding: 20px;
    min-width: 100px;
    text-align: center;
}

.timer-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f97316;
    display: block;
}

.timer-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.timer-separator {
    font-size: 2rem;
    font-weight: 900;
    color: #f97316;
    display: flex;
    align-items: center;
}

.urgency-cta {
    font-size: 1.4rem;
    padding: 25px 50px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3); }
    50% { box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5); }
    100% { box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3); }
}

/* Final Choice Section */
.final-choice-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.choices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.choice-card {
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.bad-choice {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 2px solid #ef4444;
}

.bad-choice .choice-icon {
    color: #ef4444;
}

.good-choice {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border: 2px solid #22c55e;
    transform: scale(1.05);
}

.good-choice .choice-icon {
    color: #22c55e;
}

.choice-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.choice-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
}

.final-cta-container {
    text-align: center;
}

.final-cta {
    font-size: 1.5rem;
    padding: 25px 60px;
    min-width: 350px;
}

/* Checkout Section */
.checkout-section {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
}

.checkout-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.checkout-content h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #111827;
}

.product-summary {
    background: white;
    border: 2px solid #f97316;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.product-summary h4 {
    font-size: 1.3rem;
    color: #111827;
    margin-bottom: 10px;
}

.product-price {
    font-size: 2rem;
    font-weight: 900;
    color: #f97316;
    margin-bottom: 5px;
}

.product-description {
    color: #6b7280;
    font-weight: 500;
}

.checkout-btn {
    width: 100%;
    margin-bottom: 30px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge i {
    color: #22c55e;
}

/* Responsive Design */
@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;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .choices-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .timer-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .timer-number {
        font-size: 2rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 16px 30px;
        min-width: 250px;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .ebook-cover {
        width: 240px;
        height: 320px;
    }
    
    .cover-content h3 {
        font-size: 1.6rem;
    }
    
    .cover-icon {
        font-size: 3rem;
    }
}

/* Modal Styles */
.modal {
  display: none; /* Escondido por padrão */
  position: fixed; /* Fixo na tela */
  z-index: 1; /* Fica acima do conteúdo */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Para que o modal seja rolável */
  background-color: rgba(0, 0, 0, 0.4); /* Fundo semi-transparente */
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}