/* ============================================
   DESIGN SYSTEM — BASEADO NO SITE REAL
   Bebas Neue + Sora + Paleta Quente + Brutal
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

:root {
    /* Paleta quente do site real */
    --bg-dark: #100D06;
    --bg-brown: #362104;
    --bg-warm: #855A1D;
    --bg-beige: #DABF98;
    --bg-gray-warm: #AC9F91;
    --bg-offwhite: #F3F2ED;

    /* Texto */
    --text-primary: #FFFFFF;
    --text-secondary: #8B8B8B;
    --text-muted: #555555;

    /* CTA — verde Elementor (conversão real) */
    --accent: #61CE70;
    --accent-hover: #4db85c;
    --accent-dark: #3d9449;

    /* Ouro/bege para detalhes */
    --gold: #DABF98;
    --gold-dark: #855A1D;

    /* Vermelho sangue (manter para erros) */
    --accent-red: #8b0000;
    --accent-red-bright: #a51c1c;

    /* Bordas */
    --border: #1a1a1a;
    --border-warm: #2a2520;

    /* Sem border-radius — estética masculina */
    --radius: 0px;

    /* Sombras — pesadas, não soft UI */
    --shadow-btn: 0 6px 0 #3d7a45, 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-btn-active: 0 1px 0 #3d7a45, 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-inset: inset 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-card-deep: 0 15px 50px rgba(0, 0, 0, 0.7);

    /* Fontes do site real */
    --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
    --font-body: 'Sora', 'Roboto', sans-serif;
    --font-text: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Noise sutil — textura emocional */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='0' y='0' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    mix-blend-mode: overlay;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: 2px;
    font-weight: 400; /* Bebas Neue já é bold por natureza */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   BARRA DE URGÊNCIA
   ============================================ */
.urgency-bar {
    background: var(--bg-brown);
    color: var(--bg-beige);
    text-align: center;
    padding: 0.75rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 3px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--bg-warm);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.5;
}

.highlight {
    color: var(--bg-beige);
}

.highlight-red {
    color: var(--accent-red-bright);
}

/* ============================================
   DIVISOR
   ============================================ */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    height: 3rem;
    overflow: hidden;
    background: var(--bg-dark);
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bg-warm), transparent);
}

.divider-diamond {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--bg-warm);
    transform: rotate(45deg);
    position: relative;
    z-index: 1;
    border: 1px solid var(--gold-dark);
}

/* ============================================
   BOTÕES — ESTILO ELEMENTOR REAL
   Zero radius, alto, uppercase, verde
   ============================================ */
.btn-cta {
    display: block;
    width: auto;
    min-width: 300px;
    max-width: 500px;
    margin: 0 auto;
    background: var(--accent);
    color: #000;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 1.75rem 2rem;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-btn);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    -webkit-tap-highlight-color: rgba(97, 206, 112, 0.3);
    touch-action: manipulation;
}

.btn-cta:hover {
    background: var(--accent-hover);
    filter: brightness(1.05);
}

.btn-cta:active {
    transform: translateY(5px);
    box-shadow: var(--shadow-btn-active);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--bg-warm);
    color: var(--bg-beige);
    box-shadow: none;
}

.btn-secondary:active {
    background: var(--bg-warm);
    color: var(--bg-dark);
}

.btn-large {
    font-size: 1.1rem;
    padding: 1.85rem 2rem;
}

/* ============================================
   TAGS DE SEÇÃO
   ============================================ */
.section-tagline {
    color: var(--bg-beige);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 400;
}

section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    line-height: 0.85;
    color: var(--text-primary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-sub {
    text-align: center;
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.section-sub strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* ============================================
   HERO — TIPOGRAFIA-DRIVEN
   ============================================ */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
    /* Imagem como fundo emocional, não gradiente */
    background:
        radial-gradient(ellipse at center, transparent 20%, rgba(16, 13, 6, 0.6) 60%, rgba(16, 13, 6, 0.92) 100%),
        linear-gradient(180deg, rgba(16, 13, 6, 0.4) 0%, rgba(16, 13, 6, 0.7) 50%, rgba(16, 13, 6, 1) 100%),
        url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&q=80') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='0' y='0' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 512px 512px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-tagline {
    color: var(--bg-beige);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-sub strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Preço Hero — simples, direto */
.hero-price {
    margin-bottom: 2.5rem;
    padding: 1rem 0;
}

.price-from {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    letter-spacing: 3px;
}

.price-from span {
    text-decoration: line-through;
}

.price-to {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
    letter-spacing: 3px;
    line-height: 1;
}

.price-installments {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--bg-beige);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.hero-guarantee {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Texto pós-CTA — demonstração */
.hero-guarantee-after-cta {
    margin-top: 2rem;
    text-align: center;
}

.hero-notice-line {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.hero-notice-line:first-child {
    margin-bottom: 0.25rem;
}

/* ============================================
   SEÇÕES — ESPAÇAMENTO BRUTAL
   ============================================ */
section {
    position: relative;
}

/* ============================================
   PROVA SOCIAL
   ============================================ */
.prova-atletas {
    padding: 100px 0 75px;
    background: var(--bg-dark);
}

.atletas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.atleta-card {
    background: transparent;
    border: none;
    text-align: center;
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease;
}

.atleta-card:active {
    transform: scale(0.97);
}

.atleta-placeholder {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.atleta-nome {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.atleta-titulo {
    color: var(--bg-beige);
    font-size: 0.85rem;
    line-height: 1.6;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 300;
}

.prova-atletas .btn-cta {
    min-width: 300px;
    max-width: 500px;
}

/* ============================================
   ERROS
   ============================================ */
.erros {
    padding: 100px 0 75px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(54, 33, 4, 0.3) 50%, var(--bg-dark) 100%);
}

.erros-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.erro-card {
    background: transparent;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

/* Remover border-bottom do último card (erro 06) */
.erro-card:last-child {
    border-bottom: none;
}

.erro-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-red);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.erro-card:active {
    border-bottom-color: var(--accent-red);
}

.erro-card:active::before {
    opacity: 1;
}

.erro-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--accent-red-bright);
    line-height: 1;
    flex-shrink: 0;
}

.erro-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.erro-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.erros-mensagem {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: 3rem;
    letter-spacing: 3px;
    color: var(--text-primary);
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

/* ============================================
   DNA
   ============================================ */
.dna {
    padding: 100px 0 75px;
    background: var(--bg-dark);
}

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

.dna-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
    background: transparent;
}

.dna-card:active {
    border-color: var(--bg-warm);
}

.dna-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.dna-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.dna-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.dna .btn-cta {
    min-width: 300px;
    max-width: 500px;
}

/* ============================================
   MÓDULOS
   ============================================ */
.modulos {
    padding: 150px 0 75px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(54, 33, 4, 0.2) 50%, var(--bg-dark) 100%);
}

.modulos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.modulo-card {
    background: transparent;
    padding: 2rem;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: border-color 0.3s ease;
}

.modulo-card:active {
    border-color: var(--bg-warm);
}

.modulo-card.destaque {
    border-color: var(--bg-warm);
    border-width: 2px;
}

.modulo-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-warm);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 3px;
    white-space: nowrap;
}

.modulo-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
    color: var(--text-primary);
}

.modulo-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   OFERTAS PARCEIRAS - CAROUSEL
   ============================================ */
.ofertas-parceiras {
    padding: 100px 0 75px;
    background: var(--bg-dark);
}

.carousel-wrapper {
    position: relative;
    margin-bottom: 2rem;
    overflow: visible;
    padding: 0 3rem;
}

.carousel-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 0.5rem 0;
    scroll-snap-type: x mandatory;
}

.carousel-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease, background 0.3s ease, transform 0.2s ease;
    padding: 0;
}

.carousel-btn:hover {
    background: rgba(42, 37, 32, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-left {
    left: 0.5rem;
}

.carousel-btn-right {
    right: 0.5rem;
}

/* Offer Card */
.offer-card {
    position: relative;
    flex-shrink: 0;
    width: 300px;
    height: 460px;
    border-radius: var(--radius);
    overflow: hidden;
    color: inherit;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
    background: var(--bg-brown);
    cursor: default;
}

.offer-card:hover {
    transform: translateY(-8px);
}

.offer-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 42%;
    overflow: hidden;
}

.offer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-card-image img {
    transform: scale(1.1);
}

.offer-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 58%;
    background: var(--bg-brown);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    overflow-y: auto;
    scrollbar-width: none;
}

.offer-card-content::-webkit-scrollbar {
    display: none;
}

.offer-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

.offer-tag svg {
    color: var(--bg-warm);
    width: 14px;
    height: 14px;
}

.offer-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0.75rem 0 0.5rem;
    color: var(--text-primary);
}

.offer-card-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.offer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.offer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.offer-brand-logo {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.offer-brand-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.offer-promo-code {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.offer-arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    transition: transform 0.3s ease, background 0.3s ease;
}

.offer-card:hover .offer-arrow {
    transform: rotate(-45deg);
    background: var(--bg-beige);
}

.offer-arrow svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   AUTORIDADE
   ============================================ */
.autoridade {
    padding: 100px 0 75px;
    background: var(--bg-dark);
}

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

.autoridade-text h2 {
    text-align: left;
}

.autoridade-text .section-tagline {
    text-align: left;
}

.autoridade-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.autoridade-list {
    margin-top: 1.5rem;
}

.autoridade-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.autoridade-list li:last-child {
    border-bottom: none;
}

.autoridade-visual {
    display: flex;
    justify-content: center;
}

.placeholder-autoridade {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 4/3;
    background: var(--bg-brown);
    border: 2px solid var(--bg-warm);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.placeholder-autoridade span {
    font-size: 4rem;
}

.placeholder-autoridade p {
    color: var(--bg-beige);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
}

/* ============================================
   FILTRO
   ============================================ */
.filtro {
    padding: 100px 0 75px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(54, 33, 4, 0.25) 50%, var(--bg-dark) 100%);
}

.filtro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.filtro-col h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.filtro-col:first-child h3 {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.filtro-col:last-child h3 {
    color: var(--accent-red-bright);
    border-bottom-color: var(--accent-red);
}

.filtro-col ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.filtro-col ul li:last-child {
    border-bottom: none;
}

.filtro-mensagem {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-top: 3rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

/* ============================================
   OFERTA FINAL
   ============================================ */
.oferta {
    padding: 150px 0 100px;
    background: var(--bg-dark);
    position: relative;
}

.oferta-card {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 2rem;
    background: transparent;
    border: 2px solid var(--bg-warm);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

/* Top stripe */
.oferta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bg-warm), var(--bg-beige), var(--bg-warm));
    z-index: 2;
}

.oferta-header {
    background: rgba(54, 33, 4, 0.4);
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.oferta-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.oferta-price-from {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    letter-spacing: 3px;
}

.oferta-price-from span {
    text-decoration: line-through;
}

.oferta-price-to {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
    letter-spacing: 3px;
    line-height: 1;
}

.oferta-installments {
    color: var(--text-secondary);
    font-size: 1rem;
}

.oferta-incluso {
    padding: 2.5rem 2rem;
}

.oferta-incluso h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--bg-beige);
}

.oferta-incluso ul {
    text-align: left;
}

.oferta-incluso ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.oferta-incluso ul li:last-child {
    border-bottom: none;
}

.oferta .btn-cta {
    margin: 0 auto 2rem;
    width: auto;
    min-width: 300px;
    max-width: 500px;
}

.oferta-garantia {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border);
}

.garantia-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.oferta-garantia h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: var(--bg-beige);
}

.oferta-garantia p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.oferta-urgencia {
    text-align: center;
    color: var(--bg-beige);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-top: 1.5rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 100px 0 75px;
    background: var(--bg-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.faq-item {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.3s ease;
}

.faq-item:active {
    border-color: var(--bg-warm);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--bg-beige);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.faq .btn-cta {
    min-width: 300px;
    max-width: 500px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 3rem 0;
    background: var(--bg-dark);
    text-align: center;
    border-top: 1px solid var(--border);
}

footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--bg-warm);
    color: var(--bg-dark);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0.6;
    border: 1px solid var(--bg-warm);
}

.scroll-top:active {
    opacity: 1;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVO — MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 7vw, 4.5rem);
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 4px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    section h2 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .atletas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .erros-grid {
        grid-template-columns: 1fr;
    }

    .dna-grid {
        grid-template-columns: 1fr 1fr;
    }

    .modulos-grid {
        grid-template-columns: 1fr;
    }

    .autoridade-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .autoridade-text h2 {
        text-align: center;
    }

    .autoridade-text .section-tagline {
        text-align: center;
    }

    .placeholder-autoridade {
        max-width: 280px;
        margin: 0 auto;
    }

    .filtro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Carousel Responsivo */
    .offer-card {
        width: 280px;
        height: 420px;
    }

    .offer-card-content {
        padding: 1.5rem 1.25rem;
    }

    .carousel-wrapper {
        padding: 0 2.5rem;
    }

    .carousel-btn {
        width: 2rem;
        height: 2rem;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-btn-left {
        left: 0.25rem;
    }

    .carousel-btn-right {
        right: 0.25rem;
    }

    .prova-atletas,
    .erros,
    .dna,
    .modulos,
    .ofertas-parceiras,
    .autoridade,
    .filtro,
    .faq {
        padding: 80px 0 60px;
    }

    .oferta {
        padding: 100px 0 75px;
    }

    .oferta .btn-cta {
        margin: 0 auto 1.5rem;
        width: auto;
        min-width: 280px;
        max-width: 100%;
    }

    .oferta-header {
        padding: 2rem 1.5rem;
    }

    .oferta-incluso {
        padding: 2rem 1.5rem;
    }

    .oferta-garantia {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .urgency-bar {
        font-size: 0.7rem;
        letter-spacing: 1px;
        padding: 0.5rem 0.75rem;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat {
        padding: 0;
    }

    .section-tagline {
        font-size: 0.85rem;
        letter-spacing: 4px;
    }

    section h2 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .atletas-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .atleta-card {
        padding: 1rem 0.5rem;
    }

    /* Carousel em telas pequenas */
    .offer-card {
        width: 260px;
        height: 420px;
    }

    .offer-card-content {
        padding: 1.5rem 1.25rem;
        gap: 0.5rem;
    }

    .offer-card-content h3 {
        font-size: 1.15rem;
        margin: 0.5rem 0 0.35rem;
    }

    .offer-card-content p {
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .offer-footer {
        padding-top: 0.75rem;
    }

    .offer-brand-name {
        font-size: 0.65rem;
    }

    .offer-promo-code {
        font-size: 0.6rem;
    }

    .dna-grid {
        grid-template-columns: 1fr;
    }

    .btn-cta {
        min-width: 280px;
        max-width: 100%;
        width: 100%;
        padding: 1.5rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 1.6rem 1.5rem;
    }
}

/* ============================================
   DESKTOP
   ============================================ */
@media (min-width: 769px) {
    .btn-cta {
        min-width: 300px;
        max-width: 500px;
    }

    .hero-stats {
        gap: 2.5rem;
    }
}

@media (min-width: 992px) {
    .urgency-bar {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }

    .btn-cta {
        font-size: 1.05rem;
        padding: 2rem 3rem;
        letter-spacing: 2.5px;
    }

    .btn-large {
        font-size: 1.15rem;
        padding: 2.1rem 3rem;
    }

    .btn-cta:hover {
        background: var(--accent-hover);
    }

    .btn-secondary:hover {
        background: var(--bg-warm);
        color: var(--bg-dark);
    }

    .section-tagline {
        font-size: 1.1rem;
        letter-spacing: 8px;
    }

    section h2 {
        font-size: clamp(3rem, 5vw, 5rem);
    }

    .hero-tagline {
        font-size: 1.25rem;
        letter-spacing: 10px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .atletas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .erros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .dna-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }

    .modulos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .filtro-grid {
        gap: 4rem;
    }

    .oferta-card {
        max-width: 700px;
    }

    .faq-list {
        max-width: 800px;
    }

    .scroll-top:hover {
        opacity: 1;
        transform: translateY(-3px);
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 2rem;
    }

    .atletas-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   MOBILE EXTRAS
   ============================================ */
@media (max-width: 480px) {
    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
