/* style.css - Estilos Customizados */

/* ============================================
   Variáveis de Cores (baseadas nas imagens)
   ============================================ */
:root {
    --color-green-dark: #1e501a;
    --color-green-medium: #3d5a47;
    --color-green-light: #e8f0eb;
    --color-gold: #d4af37;
    --color-cream: #f5f0e8;
    --color-red: #ff3131;
    --color-red-dark: #8b1a2e;
    --color-white: #ffffff;
    --color-text: #2c3e2f;
}

/* ============================================
   Reset e Estilos Gerais
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-green-medium) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.8;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.95;
}

.hero-image-placeholder {
    position: relative;
    z-index: 1;
}

.hero-image-placeholder img {
    border: 5px solid var(--color-gold);
}

/* ============================================
   Botões CTA
   ============================================ */
.btn-cta {
    background: var(--color-gold);
    color: var(--color-green-dark);
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-cta:hover {
    background: var(--color-cream);
    color: var(--color-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.cta-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

/* ============================================
   Títulos de Seção
   ============================================ */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 2px;
}

/* ============================================
   Seção: O que você vai aprender
   ============================================ */
#conteudo {
    background: var(--color-white);
}

.content-item {
    background: var(--color-green-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.content-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.content-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.content-item h4 {
    color: var(--color-green-dark);
    font-weight: 600;
    margin-bottom: 0;
}

/* ============================================
   Seção: Exemplos Visuais
   ============================================ */
.bg-light-green {
    background: var(--color-green-light);
}

.example-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.example-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-img-placeholder {
    background: var(--color-cream);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.example-card .card-text {
    font-weight: 600;
    color: var(--color-green-dark);
    margin-bottom: 0;
}

/* ============================================
   Seção: Economia e Lucro
   ============================================ */
.price-box {
    padding: 40px 30px;
    border-radius: 15px;
    background: var(--color-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.price-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.production-cost {
    border: 3px solid var(--color-green-dark);
}

.store-price {
    border: 3px solid var(--color-gold);
}

.price-box h3 {
    color: var(--color-green-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-red);
    margin: 15px 0;
}

.store-price .price-value {
    color: var(--color-gold);
}

/* ============================================
   Seção: Benefícios
   ============================================ */
.benefit-item {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-gold);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-item h5 {
    color: var(--color-green-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-item p {
    color: var(--color-text);
    margin-bottom: 0;
}

/* ============================================
   Seção: Garantia e Urgência
   ============================================ */
.guarantee-box {
    background: var(--color-green-light);
    border-radius: 20px;
    border: 3px dashed var(--color-gold);
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    background: var(--color-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.badge-icon {
    font-size: 3rem;
    color: var(--color-white);
    font-weight: 700;
}

.guarantee-box h3 {
    color: var(--color-green-dark);
    font-weight: 700;
}

.urgency-box {
    background: var(--color-red);
    color: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
}

.urgency-title {
    font-weight: 700;
    font-size: 1.8rem;
}

/* ============================================
   Seção: CTA Final
   ============================================ */
.bg-cta {
    background: linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-green-medium) 100%);
    color: var(--color-white);
}

.cta-final-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.cta-final-text {
    font-size: 1.2rem;
    color: var(--color-white);
}

.btn-cta-final {
    background: var(--color-gold);
    color: var(--color-green-dark);
    font-weight: 700;
    font-size: 1.3rem;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-cta-final:hover {
    background: var(--color-cream);
    color: var(--color-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--color-green-dark) !important;
}

/* ============================================
   Responsividade Mobile
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .cta-final-title {
        font-size: 1.8rem;
    }
    
    .btn-cta,
    .btn-cta-final {
        font-size: 1rem;
        padding: 15px 30px !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .content-item,
    .benefit-item {
        padding: 20px;
    }
    
    .price-box {
        padding: 30px 20px;
    }
}