/* 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: #374151;
    overflow-x: hidden;
}

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

/* Utilitários */
.text-center {
    text-align: center;
}

.highlight {
    color: #1E40AF;
    font-weight: 600;
}

/* Header */
.header {
    background: #FFFFFF;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo h1 {
    color: #1E40AF;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #FCD34D;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #DBEAFE;
}

.hero-benefits {
    margin-bottom: 2rem;
}

.hero-benefits p {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Botões CTA */
.cta-button {
    display: inline-block;
    background: #FCD34D;
    color: #1E40AF;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.4);
}

.cta-button:hover {
    background: #F59E0B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 211, 77, 0.6);
}

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

/* Seções gerais */
section {
    padding: 80px 0;
}

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

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1E40AF;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1E40AF;
}

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

/* Problem Section */
.problem {
    background: #FFFFFF;
}

.problem img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Emotional Section */
.emotional {
    background: linear-gradient(135deg, #FEF3C7 0%, #FCD34D 100%);
    text-align: center;
}

.emotional h2 {
    color: #1E40AF;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Solution Section */
.solution {
    background: #DBEAFE;
}

.solution-image {
    text-align: center;
    margin-top: 3rem;
}

.solution-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    background: #FFFFFF;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Learn Section */
.learn {
    background: linear-gradient(135deg, #DBEAFE 0%, #FFFFFF 100%);
}

.section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #6B7280;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 1.5rem;
    color: #10B981;
    flex-shrink: 0;
}

.learn-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.learn-images img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.learn-images img:hover {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery {
    background: #F9FAFB;
}

.testimonial {
    font-size: 1.5rem;
    font-style: italic;
    color: #1E40AF;
    margin-bottom: 3rem;
    font-weight: 500;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Details Section */
.details {
    background: #1E40AF;
    color: white;
}

.details h2 {
    color: #FCD34D;
}

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

.detail-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.detail-card h3 {
    color: #FCD34D;
    margin-bottom: 0.5rem;
}

/* Community Section */
.community {
    background: #FEF3C7;
}

.community-image {
    text-align: center;
    margin-top: 3rem;
}

.community-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Value Section */
.value {
    background: #FFFFFF;
}

.value-content {
    max-width: 800px;
    margin: 2rem auto 0;
}

/* Target Section */
.target {
    background: #DBEAFE;
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.target-column h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.target-item:hover {
    transform: translateX(5px);
}

.target-item.positive {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10B981;
}

.target-item.negative {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #EF4444;
}

.target-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Urgency Section */
.urgency {
    background: linear-gradient(135deg, #FEF3C7 0%, #F59E0B 100%);
}

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

.urgency-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.urgency-item:hover {
    transform: translateY(-5px);
}

.urgency-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* Transformation Section */
.transformation {
    background: linear-gradient(135deg, #DBEAFE 0%, #FEF3C7 100%);
}

.transformation-content {
    margin-top: 3rem;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.before, .after {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.before {
    border-left: 4px solid #EF4444;
}

.after {
    border-left: 4px solid #10B981;
}

.after img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

.arrow {
    font-size: 3rem;
    color: #1E40AF;
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    background: #F9FAFB;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.benefit-check {
    color: #10B981;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    background: #DBEAFE;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: #FCD34D;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.125rem;
    color: #1E40AF;
    margin: 0;
}

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.guarantee h2 {
    color: white;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-badge {
    background: #FCD34D;
    color: #1E40AF;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    color: white;
}

.pricing-content {
    max-width: 600px;
    margin: 0 auto;
}

.price-highlight {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    color: #FCD34D;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: #FCD34D;
}

.period {
    font-size: 1.5rem;
    color: #DBEAFE;
}

.installments {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #DBEAFE;
}

.pricing-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* Final Appeal Section */
.final-appeal {
    background: #FEF3C7;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
}

.final-cta h2 {
    color: #1E40AF;
}

/* Footer */
.footer {
    background: #1E40AF;
    color: white;
    padding: 3rem 0;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .arrow {
        transform: rotate(90deg);
        justify-self: center;
    }
    
    .learn-images {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-list {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .cta-button.large {
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
    
    .urgency-item {
        padding: 1.5rem;
    }
    
    .before, .after {
        padding: 1.5rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave para âncoras */
html {
    scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
.cta-button:focus,
.gallery-item:focus,
.detail-card:focus {
    outline: 3px solid #FCD34D;
    outline-offset: 2px;
}

/* Hover states para melhor UX */
.benefit-item:hover,
.detail-card:hover,
.testimonial-card:hover,
.urgency-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Loading states para imagens */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

