/* ==========================================================================
   DIGISTORE24 APPROVED WHITE PAGE - DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Cores Limpas & Profissionais (White Page Compliance) */
    --color-bg-main: #FFFFFF;
    --color-bg-alt: #FAFAF8;
    --color-bg-card: #FFFFFF;
    --color-bg-dark: #111827;
    --color-text-main: #1F2937;
    --color-text-muted: #4B5563;
    --color-text-light: #F9FAFB;
    
    /* Acentos Dourados & Confiabilidade */
    --color-gold-primary: #D4AF37;
    --color-gold-light: #FCE694;
    --color-gold-dark: #AA820A;
    --color-gold-glow: rgba(212, 175, 55, 0.25);
    
    /* Preços & Conversão */
    --color-price-strike: #DC2626;
    --color-price-today: #059669;
    
    /* Botão CTA Gradient */
    --cta-gradient: linear-gradient(135deg, #FFC107 0%, #FF9800 50%, #F57C00 100%);
    --cta-hover-gradient: linear-gradient(135deg, #FFD54F 0%, #FFA726 50%, #FB8C00 100%);
    --cta-shadow: 0 10px 25px -5px rgba(255, 152, 0, 0.35), 0 8px 10px -6px rgba(255, 152, 0, 0.25);
    
    /* Tipografia Institucional Clássica: Merriweather (Serif Editorial) + Inter (Sans-Serif Limpa) */
    --font-heading: 'Merriweather', Georgia, "Times New Roman", serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Sombras Elevadas */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 15px 35px -5px rgba(0,0,0,0.08), 0 10px 15px -5px rgba(0,0,0,0.04);
    --shadow-gold: 0 20px 40px -15px var(--color-gold-glow);
    
    /* Transições */
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-main);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Compliance Banner / Trust Bar */
.top-trust-bar {
    background-color: #1F2937;
    color: #E5E7EB;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.75rem 0;
    text-align: center;
    border-bottom: 2px solid var(--color-gold-primary);
    letter-spacing: 0.3px;
}

.trust-bar-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-bullet {
    color: #FCE694;
    font-weight: 800;
}

/* Header & Official Branding */
.site-header {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 1.75rem 0;
    text-align: center;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.5px;
}

.brand-title span {
    color: var(--color-gold-dark);
}

.brand-subtitle {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 4px;
}


/* ==========================================================================
   HERO / MAIN PRODUCT PRESENTATION
   ========================================================================== */
.presentation-section {
    padding: 4rem 0 4.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.compliance-badge {
    display: inline-block;
    background: #FEF3C7;
    color: #92400E;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid #FDE68A;
}

.main-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    max-width: 850px;
    margin: 0 auto 1.5rem;
}

.headline-gold {
    color: var(--color-gold-dark);
}

.main-subheadline {
    font-size: clamp(1.05rem, 3vw, 1.2rem);
    color: var(--color-text-muted);
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Product Bundle Showcase */
.product-showcase-box {
    position: relative;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(255,255,255,0) 70%);
    filter: blur(30px);
    z-index: 0;
}

.bundle-img-clean {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.12));
}

.digital-notice {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #059669;
    background: #ECFDF5;
    padding: 8px 22px;
    border-radius: 30px;
    margin-top: 1.25rem;
    border: 1px solid #A7F3D0;
}

/* Pricing & CTA Box */
.pricing-wrapper {
    max-width: 520px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 2.75rem 2.25rem;
    border-radius: 24px;
    border: 2px solid var(--color-gold-primary);
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    margin-bottom: 1.75rem;
}

.price-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.price-old {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-price-strike);
    text-decoration: line-through;
    text-decoration-thickness: 3px;
}

.price-now {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.25rem);
    font-weight: 700;
    color: var(--color-price-today);
    line-height: 1;
}

.payment-type {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-top: 6px;
}

/* CTA Button */
.btn-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--cta-gradient);
    border: 2px solid #FFE082;
    border-radius: 16px;
    color: #111111;
    text-align: center;
    box-shadow: var(--cta-shadow);
    transition: var(--transition-smooth);
    margin-bottom: 1.25rem;
}

.btn-cta:hover {
    transform: translateY(-3px);
    background: var(--cta-hover-gradient);
    box-shadow: 0 15px 30px -5px rgba(255, 152, 0, 0.5);
    border-color: #FFF8E1;
}

.btn-text {
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 4vw, 1.5rem);
    font-weight: 800;
    line-height: 1.25;
}

.btn-subtext {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    opacity: 0.95;
    margin-top: 4px;
}


/* ==========================================================================
   WHAT'S INCLUDED SECTION (CORE SYSTEM ONLY)
   ========================================================================== */
.included-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.section-heading-box {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--color-gold-primary);
    margin: 0.85rem auto 0;
    border-radius: 2px;
}

/* Core Product Highlight Card */
.core-product-card {
    background: linear-gradient(135deg, #FFFDF5 0%, #FFF9E6 100%);
    border: 2px solid var(--color-gold-primary);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    margin: 0 auto;
    max-width: 950px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .core-product-card {
        grid-template-columns: 340px 1fr;
    }
}

.core-img-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.core-img-col img {
    max-height: 320px;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.18));
}

.core-badge {
    display: inline-block;
    background: #111827;
    color: #FCE694;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 1.25rem;
}

.core-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.core-desc {
    font-size: 1.05rem;
    color: var(--color-text-main);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 600;
    color: #374151;
}

.check-green {
    color: #059669;
    font-weight: 800;
    flex-shrink: 0;
}


/* ==========================================================================
   DIGISTORE24 COMPLIANT 90-DAY GUARANTEE
   ========================================================================== */
.guarantee-section {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
    border-top: 1px solid rgba(0,0,0,0.06);
}

.guarantee-box {
    max-width: 850px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 2px solid #AA820A;
    border-radius: 28px;
    padding: 3.5rem 2.5rem;
    box-shadow: var(--shadow-gold), var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .guarantee-box {
        grid-template-columns: 240px 1fr;
        text-align: left;
        padding: 3.5rem;
    }
}

.guarantee-badge-img {
    width: clamp(180px, 60vw, 230px);
    margin: 0 auto;
    filter: drop-shadow(0 15px 25px rgba(170, 130, 10, 0.25));
}

.guarantee-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.guarantee-text {
    font-size: 1.05rem;
    color: var(--color-text-main);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.guarantee-terms {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    background: #F9FAFB;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    line-height: 1.6;
}


/* ==========================================================================
   FAQ SECTION (ESSENTIAL FOR COMPLIANCE)
   ========================================================================== */
.faq-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

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

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.accordion-item {
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: #D1D5DB;
}

.accordion-header {
    width: 100%;
    background: #F9FAFB;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    background: #F3F4F6;
}

.accordion-icon {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-gold-dark);
    transition: transform 0.3s ease;
    font-weight: 400;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background: #FFFFFF;
}

.accordion-content {
    padding: 1.5rem;
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    border-top: 1px solid #F3F4F6;
}


/* ==========================================================================
   DIGISTORE24 COMPLIANT FOOTER & DISCLAIMERS
   ========================================================================== */
.site-footer {
    background: #111827;
    color: #9CA3AF;
    padding: 4.5rem 0 3.5rem;
    font-size: 0.88rem;
    border-top: 4px solid var(--color-gold-primary);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-nav a {
    color: #E5E7EB;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-nav a:hover {
    color: var(--color-gold-light);
    text-decoration: underline;
}

/* Digistore24 Required Reseller Disclosure Box */
.digistore-disclaimer-box {
    max-width: 850px;
    margin: 0 auto 2.5rem;
    background: #1F2937;
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid #374151;
    color: #D1D5DB;
    font-size: 0.82rem;
    line-height: 1.65;
    text-align: justify;
}

.digistore-disclaimer-box strong {
    color: #FCE694;
}

.general-disclaimer {
    max-width: 850px;
    margin: 0 auto 2rem;
    font-size: 0.82rem;
    line-height: 1.65;
    color: #6B7280;
    text-align: justify;
}

.copyright-box {
    text-align: center;
    color: #6B7280;
    font-size: 0.85rem;
    margin-top: 2.5rem;
}


/* ==========================================================================
   STYLING FOR LEGAL & POLICY PAGES (TERMS, PRIVACY, REFUND, DISCLAIMER, CONTACT)
   ========================================================================== */
.policy-header {
    background: #111827;
    color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 4px solid var(--color-gold-primary);
}

.policy-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.policy-header p {
    color: #9CA3AF;
    font-size: 1rem;
}

.policy-content-section {
    padding: 4rem 0 6rem;
    background: #FFFFFF;
}

.policy-document {
    max-width: 850px;
    margin: 0 auto;
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.8;
}

.policy-document h2 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: #111827;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #F3F4F6;
}

.policy-document h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #1F2937;
    margin: 1.75rem 0 0.75rem;
}

.policy-document p {
    margin-bottom: 1.25rem;
    text-align: justify;
}

.policy-document ul {
    list-style: disc;
    margin: 0 0 1.5rem 2rem;
}

.policy-document li {
    margin-bottom: 0.5rem;
}

.contact-info-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.contact-info-card p {
    margin-bottom: 0.5rem;
    text-align: left;
}


/* ==========================================================================
   RESPONSIVIDADE OTIMIZADA (MOBILE FIRST)
   ========================================================================== */
@media (max-width: 640px) {
    .trust-bar-content {
        gap: 1rem;
        font-size: 0.78rem;
    }
    
    .presentation-section {
        padding: 2.5rem 0 3rem;
    }
    
    .pricing-wrapper {
        padding: 2rem 1.25rem;
    }
    
    .guarantee-box {
        padding: 2.25rem 1.25rem;
        gap: 1.75rem;
    }
    
    .core-product-card {
        padding: 2.25rem 1.25rem;
        gap: 2rem;
    }
    
    .policy-document {
        font-size: 0.98rem;
    }
    
    .digistore-disclaimer-box, .general-disclaimer {
        text-align: left;
    }
}
