/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6b35;
    --primary-dark: #e85a2a;
    --gold: #ffd700;
    --dark: #0a0a0f;
    --dark-2: #14141f;
    --dark-3: #1f1f2e;
    --light: #ffffff;
    --gray: #a0a0b0;
    --gradient-1: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    --gradient-2: linear-gradient(135deg, #ff6b35 0%, #ff3d6e 100%);
    --gradient-3: linear-gradient(135deg, #ffd700 0%, #ff6b35 50%, #ff3d6e 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============ TELA DE BOAS-VINDAS ============ */
.welcome-screen {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0f 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, transform 0.6s;
}

.welcome-screen.hidden {
    opacity: 0;
    transform: scale(1.2);
    pointer-events: none;
}

.welcome-content {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease;
}

.lock-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: pulse 1.5s infinite;
}

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.welcome-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.welcome-secret {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    font-style: italic;
}

.welcome-btn {
    background: var(--gradient-1);
    color: var(--dark);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 2px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}

.welcome-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.7);
}

.welcome-warn {
    margin-top: 2rem;
    color: var(--gray);
    font-size: 0.85rem;
}

/* ============ POPUP DE SAÍDA ============ */
.exit-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(8px);
}

.exit-popup.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.exit-content {
    background: var(--dark-2);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: scaleIn 0.4s;
}

.exit-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.exit-content h2 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.exit-content p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.exit-btn {
    background: var(--gradient-1);
    color: var(--dark);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 1rem;
    text-transform: uppercase;
    transition: transform 0.3s;
}

.exit-btn:hover {
    transform: scale(1.05);
}

/* ============ BARRA DE PROGRESSO ============ */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-3);
    z-index: 9998;
    width: 0%;
    transition: width 0.2s;
    box-shadow: 0 0 10px var(--gold);
}

/* ============ HEADER ============ */
.header {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    z-index: 100;
    padding: 1rem 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--light);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo strong {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-stats .stat {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* ============ HERO ============ */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 3rem 1.5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 61, 110, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid var(--gold);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title .line1,
.hero-title .line2,
.hero-title .line3 {
    display: block;
}

.gradient-text {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--light);
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    display: inline-block;
    background: var(--gradient-1);
    color: var(--dark);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

.btn-primary.big {
    padding: 1.4rem 3rem;
    font-size: 1.2rem;
}

.btn-primary.huge {
    padding: 1.6rem 3.5rem;
    font-size: 1.3rem;
    width: 100%;
    max-width: 600px;
}

.hero-mini {
    color: var(--gray);
    font-size: 0.9rem;
}

.hero-mini strong {
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.arrow-down {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* ============ PROVA SOCIAL (MARQUEE) ============ */
.social-proof {
    background: var(--dark-2);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    padding: 1.2rem 0;
    overflow: hidden;
}

.social-track {
    display: flex;
    gap: 3rem;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}

.social-item {
    color: var(--light);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.social-item strong {
    color: var(--gold);
}

/* ============ SECTION HEADERS ============ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary);
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
}

.section-subtitle strong {
    color: var(--gold);
}

/* ============ RECEITAS ============ */
.recipes {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.recipe-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 24px;
    margin-bottom: 3rem;
    overflow: hidden;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    opacity: 0;
    transform: translateY(40px);
    animation: revealCard 0.8s ease forwards;
}

.recipe-card:nth-child(2) { animation-delay: 0.1s; }
.recipe-card:nth-child(3) { animation-delay: 0.2s; }
.recipe-card:nth-child(5) { animation-delay: 0.1s; }
.recipe-card:nth-child(6) { animation-delay: 0.2s; }
.recipe-card:nth-child(8) { animation-delay: 0.1s; }
.recipe-card:nth-child(9) { animation-delay: 0.2s; }

.recipe-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.recipe-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2rem 1rem;
}

.recipe-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.recipe-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.meta-item {
    background: var(--dark-3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============ VÍDEO FAKE / EMBED ============ */
.video-wrapper {
    margin: 0 2rem;
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark-3);
    aspect-ratio: 16/9;
    position: relative;
}

.video-fake {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1a3e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.video-fake:hover {
    background: linear-gradient(135deg, #2a1a3e 0%, #3d2a4e 100%);
}

.video-fake iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 2rem;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
    transition: transform 0.3s;
    padding-left: 8px;
}

.video-fake:hover .play-button {
    transform: scale(1.15);
}

.video-overlay-text {
    margin-top: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--light);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============ CORPO DA RECEITA ============ */
.recipe-body {
    padding: 2rem;
}

.recipe-section {
    margin-bottom: 1.8rem;
}

.recipe-section h4 {
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.ingredients,
.steps {
    padding-left: 1.5rem;
    color: var(--light);
}

.ingredients li,
.steps li {
    margin-bottom: 0.5rem;
    color: var(--light);
}

.steps li::marker {
    color: var(--primary);
    font-weight: 700;
}

.ingredients li::marker {
    color: var(--gold);
}

.recipe-secret {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
}

.secret-tag {
    display: inline-block;
    background: var(--gradient-1);
    color: var(--dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.recipe-secret p {
    color: var(--light);
    line-height: 1.7;
}

.recipe-secret strong {
    color: var(--gold);
}

.expand-btn {
    width: 100%;
    background: var(--dark-3);
    color: var(--light);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.expand-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary);
}

.expand-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1rem;
    background: var(--dark-3);
    border-radius: 12px;
    margin-top: 0.5rem;
}

.expand-content.open {
    max-height: 500px;
    padding: 1.5rem 1rem;
}

.expand-content h5 {
    color: var(--gold);
    margin: 0.5rem 0 0.8rem;
}

.expand-content ul,
.expand-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.expand-content li {
    margin-bottom: 0.4rem;
}

/* ============ CTA MEIO ============ */
.cta-middle {
    margin: 4rem 0;
    padding: 0 1.5rem;
}

.cta-middle-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.cta-tag {
    display: inline-block;
    background: var(--gradient-2);
    color: var(--light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: pulse 1.5s infinite;
}

.cta-middle-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 1.5rem auto;
}

.cta-list li {
    padding: 0.4rem 0;
    color: var(--light);
}

.cta-price {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 1.5rem;
}

.cta-price s {
    color: #ff3d6e;
}

.big-price {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin-left: 0.5rem;
}

.cta-guarantee {
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.9rem;
}

/* ============ OFERTA FINAL ============ */
.final-offer {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark) 100%);
}

.offer-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
    border: 2px solid var(--primary);
    border-radius: 32px;
    padding: 3rem 2rem;
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.offer-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: var(--light);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.offer-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.offer-subtitle {
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.offer-stack {
    text-align: left;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.stack-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.stack-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

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

.stack-item div {
    flex: 1;
}

.stack-item strong {
    display: block;
    color: var(--light);
    font-size: 1rem;
}

.stack-item p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

.stack-value {
    color: #ff3d6e;
    font-weight: 700;
    text-decoration: line-through;
    flex-shrink: 0;
}

.offer-total {
    margin: 2.5rem 0;
    position: relative;
    z-index: 1;
}

.offer-total p {
    color: var(--gray);
    font-size: 1.1rem;
}

.offer-total s {
    color: #ff3d6e;
    font-size: 1.5rem;
}

.offer-today {
    color: var(--light) !important;
    margin-top: 0.5rem;
}

.big-price-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1rem 0;
}

.currency {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 0.3rem;
}

.big-price-box .big-price {
    font-size: 5rem;
    margin: 0;
}

.cents {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
}

.installment {
    color: var(--gray) !important;
    font-size: 1rem !important;
}

.installment strong {
    color: var(--gold);
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.guarantee-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee strong {
    color: var(--gold);
    display: block;
    margin-bottom: 0.3rem;
}

.guarantee p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.security-badges span {
    color: var(--gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ============ DEPOIMENTOS ============ */
.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: var(--dark-2);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial p {
    color: var(--light);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial strong {
    color: var(--gold);
}

/* ============ FAQ ============ */
.faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    background: var(--dark-3);
}

.faq-q {
    color: var(--light);
    font-weight: 600;
    font-size: 1.05rem;
}

.faq-a {
    color: var(--gray);
    margin-top: 0.8rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, margin-top 0.3s;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 3rem 1.5rem;
    text-align: center;
}

.footer p {
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.footer strong {
    color: var(--gold);
}

.footer-small {
    font-size: 0.8rem;
    color: #666;
    max-width: 800px;
    margin: 0.5rem auto;
}

/* ============ NOTIFICAÇÃO FLUTUANTE ============ */
.notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--dark-2);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 320px;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.notification.show {
    transform: translateX(0);
}

.notif-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    animation: ring 0.5s;
}

.notif-text {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    line-height: 1.3;
}

.notif-text strong {
    color: var(--gold);
}

.notif-text span {
    color: var(--light);
}

.notif-time {
    color: var(--gray) !important;
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

/* ============ ANIMAÇÕES ============ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    20%, 60% { transform: rotate(-15deg); }
    40%, 80% { transform: rotate(15deg); }
}

@keyframes rotate {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

@keyframes revealCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ RESPONSIVO ============ */
@media (max-width: 768px) {
    .recipe-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1.5rem 1.5rem 1rem;
    }

    .recipe-number {
        font-size: 2.5rem;
    }

    .video-wrapper {
        margin: 0 1rem;
    }

    .recipe-body {
        padding: 1.5rem;
    }

    .header-stats .stat {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .offer-box {
        padding: 2rem 1.2rem;
    }

    .stack-item {
        flex-wrap: wrap;
    }

    .stack-value {
        margin-left: 3rem;
    }

    .notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .big-price-box .big-price {
        font-size: 3.5rem;
    }
}
