/* ============================================
   VARIÁVEIS E RESET - EXTREMO
   ============================================ */

:root {
    --primary: #FF6B35;
    --primary-dark: #E55A24;
    --primary-light: #FF8555;
    --accent: #00D2D3;
    --accent-dark: #00B8BA;
    --success: #10B981;
    --error: #EF4444;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --bg-primary: #FFFFFF;
    --bg-secondary: var(--gray-50);
    --border-color: var(--gray-200);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* ============================================
   PROGRESS BAR
   ============================================ */

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 0%;
    z-index: 999;
    transition: width 0.1s ease;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.brand-mark {
    font-size: 1.5rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-text strong {
    font-size: 0.875rem;
    font-weight: 700;
}

.brand-text small {
    color: var(--primary);
    font-size: 0.625rem;
    font-weight: 700;
}

.header-meta {
    margin-left: auto;
}

.chip {
    display: inline-block;
    background-color: var(--gray-100);
    color: var(--text-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.625rem;
    font-weight: 700;
}

.chip-hot {
    background-color: #FFE5D9;
    color: var(--primary);
}

/* ============================================
   CONTAINER
   ============================================ */

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.wrap.narrow {
    max-width: 800px;
}

/* ============================================
   HERO SECTION - EXTREMA CONVERSÃO
   ============================================ */

.hero {
    padding: 2rem 0;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F7 100%);
    border-bottom: 3px solid var(--primary);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-badge {
    display: inline-block;
    background-color: #FFE5D9;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    width: fit-content;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero h1 {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}

.highlight-accent {
    color: var(--primary);
    font-size: 2.25rem;
}

.hero-lead {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.hero-lead strong {
    color: var(--primary);
    font-weight: 700;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.hero-small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
}

.hero-visual {
    display: none;
}

/* ============================================
   BOTÕES - EXTREMA CONVERSÃO
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
}

.btn-full {
    width: 100%;
}

.btn-arrow {
    font-size: 1.25rem;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */

.social-proof {
    background-color: var(--bg-secondary);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem;
    background-color: var(--bg-primary);
    border-radius: 8px;
    text-align: center;
}

.proof-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.proof-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ============================================
   FEATURED SECTION
   ============================================ */

.featured-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.featured-card-extreme {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.featured-media {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--gray-100);
}

.featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content-extreme {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-content-extreme h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.featured-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--accent);
    font-size: 1rem;
}

.rating-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.featured-bonus-extreme {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.featured-actions-extreme {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cta-subtext {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
}

/* ============================================
   RANKING SECTION
   ============================================ */

.ranking-section {
    padding: 2rem 0;
    background-color: var(--bg-secondary);
}

.ranking-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.cards-grid-extreme {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.card-extreme {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.card-extreme:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-position {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 700;
    z-index: 5;
}

.card-media-extreme {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background-color: var(--gray-100);
}

.card-media-extreme img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card-extreme:hover .card-media-extreme img {
    transform: scale(1.05);
}

.card-body-extreme {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-header-extreme {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.card-header-extreme h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.score-extreme {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
}

.stars-sm {
    font-size: 0.75rem;
}

.card-bonus-extreme {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.card-actions-extreme {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 2rem 0;
}

.faq-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    user-select: none;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary:hover {
    background-color: var(--bg-secondary);
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1rem 1rem 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
    margin: 0;
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-final h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* ============================================
   STICKY CTA MOBILE
   ============================================ */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background-color: var(--bg-primary);
    border-top: 2px solid var(--primary);
    z-index: 90;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background-color: var(--gray-900);
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-footer p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ============================================
   RESPONSIVE - TABLET (640px)
   ============================================ */

@media (min-width: 640px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .highlight-accent {
        font-size: 2.75rem;
    }

    .proof-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cards-grid-extreme {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-card-extreme {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .featured-media {
        height: 100%;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        display: block;
    }

    .card-stack {
        position: relative;
        height: 300px;
    }

    .card-item {
        position: absolute;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: white;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        width: 90%;
    }

    .card-1 {
        top: 0;
        left: 0;
        z-index: 3;
        transform: rotate(-5deg);
    }

    .card-2 {
        top: 30px;
        left: 30px;
        z-index: 2;
        transform: rotate(0deg);
    }

    .card-3 {
        top: 60px;
        left: 60px;
        z-index: 1;
        transform: rotate(5deg);
    }

    .card-value {
        font-size: 1.75rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
    }

    .card-label {
        font-size: 0.875rem;
        opacity: 0.9;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px)
   ============================================ */

@media (min-width: 1024px) {
    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .highlight-accent {
        font-size: 3.5rem;
    }

    .cards-grid-extreme {
        grid-template-columns: repeat(3, 1fr);
    }

    .featured-section h2 {
        font-size: 2rem;
    }

    .ranking-section h2 {
        font-size: 2rem;
    }

    .sticky-cta {
        display: none;
    }
}

/* ============================================
   ACESSIBILIDADE
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
   PRINT
   ============================================ */

@media print {
    .site-header,
    .site-footer,
    .sticky-cta,
    .btn,
    .progress-bar {
        display: none;
    }
}
