/* =============================================
   DESIGN SYSTEM - 300 Receitas de Sobremesas Zero
   Premium Chocolate & Dessert Theme
   Designed with Google Stitch
   ============================================= */

/* ---- Design Tokens ---- */
:root {
    --chocolate-dark: #3C1518;
    --chocolate-medium: #5C2626;
    --caramel: #A44200;
    --rose-gold: #B76E79;
    --cream: #FFF8E7;
    --gold: #D4A843;
    --gold-light: #F0D68A;
    --cta-green: #22C55E;
    --cta-green-dark: #16A34A;
    --peach: #FDDBC7;
    --coral: #E8665A;
    --white: #FFFFFF;
    --text-dark: #2D1810;
    --text-muted: #7A5C52;
    --shadow-chocolate: 0 8px 32px rgba(60, 21, 24, 0.15);
    --shadow-hover: 0 16px 48px rgba(60, 21, 24, 0.25);
    --glass-bg: rgba(255, 248, 231, 0.7);
    --glass-border: rgba(212, 168, 67, 0.3);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-full: 50%;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Manrope', -apple-system, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Candy Particle System ---- */
.candy-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.candy-particle {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    animation: floatCandy linear infinite;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

@keyframes floatCandy {
    0% {
        transform: translateY(110vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-10vh) rotate(720deg) scale(1);
        opacity: 0;
    }
}

/* ---- Urgency Bar ---- */
.urgency-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--chocolate-dark) 0%, #5a1a1a 50%, var(--chocolate-dark) 100%);
    padding: 12px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(60, 21, 24, 0.4);
    border-bottom: 2px solid var(--gold);
    animation: urgencyGlow 2s ease-in-out infinite;
}

@keyframes urgencyGlow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(60, 21, 24, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(212, 168, 67, 0.3);
    }
}

.urgency-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.urgency-warning {
    color: var(--gold);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulseText 1.5s ease-in-out infinite;
}

@keyframes pulseText {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.urgency-text {
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 400;
}

.urgency-text strong {
    color: var(--gold-light);
    font-weight: 700;
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    background: var(--chocolate-dark);
    overflow: hidden;
}

/* Hero Video Wrapper — contains the video and overlays all content */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

/* Hero Background Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(60, 21, 24, 0.65) 0%, rgba(92, 38, 38, 0.5) 50%, rgba(60, 21, 24, 0.7) 100%);
    z-index: 1;
}

/* Content layer on top of the video */
.hero-overlay-content {
    position: relative;
    z-index: 3;
    padding: 40px 0 24px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
    animation: floatBubble 8s ease-in-out infinite;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(183, 110, 121, 0.1) 0%, transparent 70%);
    animation: floatBubble 10s ease-in-out infinite reverse;
    z-index: 2;
}

@keyframes floatBubble {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Chocolate drip decorations */
.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    pointer-events: none;
}

.chocolate-drip {
    position: absolute;
    top: 0;
    width: 60px;
    height: 120px;
    background: linear-gradient(180deg, var(--chocolate-dark) 0%, var(--chocolate-medium) 60%, transparent 100%);
    border-radius: 0 0 50% 50%;
    opacity: 0.12;
    animation: dripAnimate 4s ease-in-out infinite;
}

.drip-1 {
    left: 15%;
    animation-delay: 0s;
    width: 45px;
    height: 90px;
}

.drip-2 {
    left: 50%;
    animation-delay: 1.5s;
    width: 55px;
    height: 110px;
}

.drip-3 {
    left: 82%;
    animation-delay: 3s;
    width: 40px;
    height: 80px;
}

@keyframes dripAnimate {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.12;
    }

    50% {
        transform: scaleY(1.3);
        opacity: 0.2;
    }
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Hero Content */
.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-60px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-title {
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line-1 {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--cream);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.title-highlight {
    display: inline;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    padding: 4px 12px;
    position: relative;
}

@keyframes shimmerGold {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.title-line-3,
.title-line-4 {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--cream);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.title-line-4 {
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 248, 231, 0.85);
    margin-bottom: 28px;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.highlight-zero {
    color: var(--gold-light);
    font-weight: 700;
}

/* Author Badge */
.author-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 248, 231, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 168, 67, 0.4);
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-chocolate);
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--cream);
}

.author-role {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 500;
}

/* Hero Mockup Image */
.hero-mockup-img {
    position: relative;
    animation: slideInRight 1s ease-out 0.3s both;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes slideInRight {
    from {
        transform: translateX(60px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-mockup-img img {
    max-width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.4));
    animation: floatDevice 6s ease-in-out infinite;
}

@keyframes floatDevice {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Price Tag */
.hero-price-tag {
    text-align: center;
    margin-bottom: 16px;
    font-size: 1.4rem;
    color: var(--cream);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-price-tag strong {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-light);
    text-shadow: 0 2px 16px rgba(240, 214, 138, 0.4);
}

/* Hero Bottom - Rating & CTA */
.hero-bottom {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px 28px;
    position: relative;
    z-index: 3;
}

.rating-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating-label {
    font-size: 0.95rem;
    color: rgba(255, 248, 231, 0.7);
    font-weight: 500;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--gold);
    font-size: 1.3rem;
    animation: starPop 0.5s ease-out both;
}

.star:nth-child(1) {
    animation-delay: 0.1s;
}

.star:nth-child(2) {
    animation-delay: 0.2s;
}

.star:nth-child(3) {
    animation-delay: 0.3s;
}

.star:nth-child(4) {
    animation-delay: 0.4s;
}

.star:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes starPop {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.rating-count {
    font-size: 0.9rem;
    color: rgba(255, 248, 231, 0.7);
    font-weight: 600;
}

.satisfaction-bar {
    width: 100%;
    max-width: 400px;
    height: 28px;
    background: rgba(255, 248, 231, 0.15);
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 24px;
    position: relative;
}

.satisfaction-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--cta-green) 0%, #34D399 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.satisfaction-fill span {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--white);
}

.satisfaction-fill.animated {
    width: 97%;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--cta-green) 0%, var(--cta-green-dark) 100%);
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 800;
    padding: 20px 48px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button.pulse {
    animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
    }

    50% {
        box-shadow: 0 8px 48px rgba(34, 197, 94, 0.5), 0 0 0 8px rgba(34, 197, 94, 0.1);
    }
}

.cta-icon {
    font-size: 1.3rem;
    animation: bounceIcon 2s ease-in-out infinite;
}

@keyframes bounceIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* ---- Recipe Showcase Section ---- */
.recipes-showcase {
    padding: 80px 0;
    background: var(--cream);
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--chocolate-dark);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 400;
}

.section-title strong {
    font-weight: 900;
    color: var(--caramel);
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* Recipe Cards */
.recipe-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.recipe-card {
    background: linear-gradient(145deg, var(--white) 0%, rgba(183, 110, 121, 0.05) 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-chocolate);
    border: 1px solid rgba(183, 110, 121, 0.15);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(40px);
}

.recipe-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.recipe-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--rose-gold);
}

.recipe-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.recipe-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
}

.recipe-tag {
    background: linear-gradient(135deg, var(--caramel), var(--gold));
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.recipe-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--chocolate-dark);
    text-align: center;
    padding: 16px 12px 8px;
}

.recipe-features {
    padding: 0 12px 16px;
    text-align: center;
}

.recipe-features li {
    font-size: 0.78rem;
    color: var(--rose-gold);
    padding: 2px 0;
    font-weight: 500;
}

/* ---- Gallery Section ---- */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--peach) 0%, rgba(253, 219, 199, 0.5) 100%);
}

.gallery-title .count-highlight {
    color: var(--coral);
    font-weight: 900;
    position: relative;
}

.count-highlight {
    color: var(--coral);
    font-weight: 900;
}

/* Marquee Gallery Conveyor Belt */
.gallery-marquee {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.marquee-row {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
}

.marquee-ltr .marquee-track {
    animation: marqueeLeft 30s linear infinite;
}

.marquee-rtl .marquee-track {
    animation: marqueeRight 30s linear infinite;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

    100% {
        transform: translateX(0);
    }
}

.marquee-item {
    flex-shrink: 0;
    width: 260px;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-chocolate);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marquee-item:hover img {
    transform: scale(1.1);
}

/* ---- Benefits Section ---- */
.benefits-section {
    padding: 80px 0;
    background: var(--cream);
}

.benefits-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-chocolate);
    border: 2px solid rgba(183, 110, 121, 0.2);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.benefits-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-gold), var(--gold), var(--caramel));
}

.benefits-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--rose-gold);
    margin-bottom: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.benefits-list {
    margin-bottom: 36px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(183, 110, 121, 0.08);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.benefit-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.benefit-item:last-child {
    border-bottom: none;
}

.check-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.benefit-item p strong {
    color: var(--chocolate-dark);
    font-weight: 700;
}

.benefits-card .cta-button {
    display: flex;
    margin: 0 auto;
    width: fit-content;
}

/* ---- Bonus Section ---- */
.bonus-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(253, 219, 199, 0.3) 0%, var(--cream) 100%);
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.bonus-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-chocolate);
    border: 1px solid rgba(212, 168, 67, 0.15);
    transition: var(--transition-smooth);
    position: relative;
    opacity: 0;
    transform: scale(0.9);
}

.bonus-card.visible {
    opacity: 1;
    transform: scale(1);
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.bonus-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--chocolate-dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
}

.bonus-image {
    aspect-ratio: 3/2;
    overflow: hidden;
}

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

.bonus-card:hover .bonus-image img {
    transform: scale(1.08);
}

.bonus-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--chocolate-dark);
    padding: 20px 20px 8px;
}

.bonus-features {
    padding: 0 20px 24px;
}

.bonus-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 4px 0;
    font-weight: 500;
}

.bonus-pricing {
    text-align: center;
    padding: 0 20px 20px;
}

.bonus-old-price {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.bonus-free {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--coral);
    letter-spacing: 1px;
}

/* ---- Depoimentos Section ---- */
.depoimentos-section {
    padding: 80px 0;
    background: var(--cream);
}

.depoimentos-grid {
    columns: 3;
    column-gap: 20px;
}

.depoimento-card {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-chocolate);
    border: 2px solid rgba(183, 110, 121, 0.12);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(40px);
}

.depoimento-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.depoimento-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--rose-gold);
}

.depoimento-card img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .depoimentos-grid {
        columns: 2;
        column-gap: 14px;
    }

    .depoimento-card {
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .depoimentos-grid {
        columns: 2;
        column-gap: 10px;
    }

    .depoimento-card {
        margin-bottom: 10px;
    }
}

/* ---- Checkout Section ---- */
.checkout-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--chocolate-dark) 0%, var(--chocolate-medium) 60%, #4a1e1e 100%);
    position: relative;
}

.checkout-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    max-width: 900px;
    margin: 40px auto 0;
    border: 2px solid rgba(212, 168, 67, 0.3);
}

.checkout-mockup {
    flex: 0 0 40%;
    background: linear-gradient(145deg, #fdf5e6 0%, #fae8d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.checkout-mockup img {
    max-width: 100%;
    height: auto;
    max-height: 750px;
    object-fit: contain;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.2));
}

.checkout-details {
    flex: 1;
    padding: 40px 36px;
}

.checkout-product-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--chocolate-dark);
    margin-bottom: 20px;
    text-align: center;
}

.checkout-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.checkout-benefits li {
    font-size: 0.92rem;
    color: var(--text-dark);
    padding: 6px 0;
    font-weight: 500;
    border-bottom: 1px solid rgba(183, 110, 121, 0.08);
}

.checkout-benefits li:last-child {
    border-bottom: none;
}

.checkout-bonus-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--chocolate-dark);
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 1px;
    margin-left: 6px;
    vertical-align: middle;
}

.checkout-pricing {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 32px;
    background: linear-gradient(135deg, rgba(253, 219, 199, 0.3) 0%, rgba(240, 214, 138, 0.15) 100%);
    border-radius: var(--radius-sm);
    flex-wrap: nowrap;
}

.checkout-old-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.checkout-from {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.checkout-strike {
    font-size: 1.1rem;
    font-weight: 700;
    color: #dc3545;
    text-decoration: line-through;
    white-space: nowrap;
}

.checkout-new-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.checkout-for {
    font-size: 0.9rem;
    color: var(--chocolate-dark);
    font-weight: 600;
    margin-bottom: -4px;
}

.checkout-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #22c55e;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
    white-space: nowrap;
}

.checkout-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.checkout-guarantee-text {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .checkout-card {
        flex-direction: column;
    }

    .checkout-mockup {
        padding: 24px;
    }

    .checkout-mockup img {
        max-height: 1500px;
    }

    .checkout-details {
        padding: 28px 24px;
    }

    .checkout-pricing {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
        gap: 8px;
    }

    .checkout-value {
        font-size: 2.2rem;
    }

    .checkout-strike {
        font-size: 1rem;
    }
}

/* ---- 2 Passos Section ---- */
.passos-section {
    padding: 80px 0;
    background: var(--cream);
    text-align: center;
}

.passos-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 40px auto 36px;
    max-width: 600px;
}

.passo-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.passo-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(253, 219, 199, 0.6) 0%, rgba(183, 110, 121, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(183, 110, 121, 0.12);
}

.passo-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.passo-text strong {
    color: var(--chocolate-dark);
    font-weight: 700;
}

.passos-section .cta-button {
    margin: 0 auto 40px;
    max-width: 460px;
}

.compra-segura {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.compra-segura-icon {
    font-size: 2.4rem;
}

.compra-segura-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 3px solid var(--chocolate-dark);
    padding-left: 14px;
}

.compra-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--chocolate-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.compra-destaque {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--chocolate-dark);
    line-height: 1.1;
}

@media (max-width: 480px) {
    .passos-grid {
        gap: 24px;
    }

    .passo-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .passo-text {
        font-size: 0.85rem;
    }
}

/* ---- Final CTA Section ---- */
.final-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--chocolate-dark) 0%, var(--chocolate-medium) 50%, #4a1e1e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta .section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.05) 0%, transparent 50%);
    animation: rotateGlow 15s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.guarantee-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, #fffbf0 0%, #fff8e7 60%, #fef3c7 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 36px 48px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    box-shadow:
        0 0 0 6px rgba(212, 168, 67, 0.12),
        0 20px 60px rgba(60, 21, 24, 0.35);
    gap: 4px;
    width: 100%;
    max-width: 450px;
}

.guarantee-badge::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 26px;
    border: 1px dashed rgba(212, 168, 67, 0.35);
    pointer-events: none;
}

.guarantee-icon {
    font-size: 3.6rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 12px rgba(212, 168, 67, 0.4));
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 12px rgba(212, 168, 67, 0.4));
    }

    50% {
        transform: scale(1.07);
        filter: drop-shadow(0 6px 20px rgba(212, 168, 67, 0.7));
    }
}

.guarantee-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.guarantee-stars span {
    color: var(--gold);
    font-size: 1.1rem;
}

.guarantee-badge h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--chocolate-dark);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.guarantee-badge p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.guarantee-tag {
    margin-top: 14px;
    background: linear-gradient(135deg, var(--cta-green) 0%, var(--cta-green-dark) 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 6px;
}

.cta-final {
    font-size: 1.3rem;
    padding: 22px 56px;
    position: relative;
    z-index: 1;
}

.secure-text {
    color: rgba(255, 248, 231, 0.6);
    font-size: 0.85rem;
    margin-top: 16px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ---- Footer ---- */
.footer {
    background: var(--chocolate-dark);
    padding: 28px 24px;
    text-align: center;
    border-top: 1px solid rgba(212, 168, 67, 0.2);
}

.footer p {
    color: rgba(255, 248, 231, 0.5);
    font-size: 0.8rem;
}

.footer-links {
    margin-top: 8px;
}

.footer-links a {
    color: rgba(212, 168, 67, 0.6);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .recipe-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-badge {
        justify-content: center;
    }

    .hero-mockup-img {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-mockup-img img {
        max-height: 380px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        gap: 24px;
    }

    .recipe-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .marquee-item {
        width: 220px;
        height: 150px;
    }

    .bonus-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .benefits-card {
        padding: 32px 24px;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 16px 32px;
    }

    .urgency-content {
        flex-direction: column;
        gap: 4px;
    }

    .device-mockup {
        height: 320px;
    }

    .mockup-laptop {
        width: 220px;
    }

    .mockup-phone {
        width: 90px;
        right: 50px;
    }

    .mockup-book {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .recipe-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .marquee-item {
        width: 180px;
        height: 130px;
    }

    .hero-video-wrapper {
        min-height: auto;
    }

    .hero-overlay-content {
        padding: 30px 0 24px;
    }

    .hero-mockup-img img {
        max-height: 280px;
    }

    .hero-price-tag {
        font-size: 1.1rem;
    }

    .hero-price-tag strong {
        font-size: 1.5rem;
    }

    .cta-button {
        font-size: 0.85rem;
        padding: 16px 24px;
    }

    .cta-final {
        font-size: 1rem;
        padding: 18px 36px;
    }

    .device-mockup {
        height: 260px;
    }

    .mockup-laptop {
        width: 180px;
    }

    .mockup-phone {
        width: 75px;
        right: 30px;
    }

    .mockup-book {
        width: 130px;
    }

    .book-text h2 {
        font-size: 1rem;
    }
}