/* DESIGN SYSTEM - MACARRÃO GOURMET NO POTE */
:root {
    --primary: #F4620A;
    --primary-hover: #E5500A;
    --primary-light: rgba(244, 98, 10, 0.1);
    --secondary: #FFBE00;
    --secondary-warm: #FFD34E;
    --accent: #FF8534;
    --bg-cream: #FFFBF5;
    --white: #FFFFFF;
    --dark: #1A0A00;
    --dark-soft: #3D1F00;
    --gray: #6B5744;
    --gray-light: #EDE0D7;
    --glass: rgba(255, 255, 255, 0.7);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(244, 98, 10, 0.15);
    --shadow-lg: 0 20px 60px rgba(244, 98, 10, 0.2);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --font-serif: 'Poppins', sans-serif;
    --font-sans: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* --- REUSABLE COMPONENTS --- */
.section-label {
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary);
    font-style: italic;
}

.section-sub {
    text-align: center;
    color: var(--gray);
    font-size: 18px;
    max-width: 620px;
    margin: 0 auto 32px;
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 800;
    padding: 20px 48px;
    border-radius: 60px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-lg {
    font-size: 20px;
    padding: 22px 56px;
}

/* --- TOPBAR --- */
.topbar {
    background: var(--primary);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

/* --- HERO --- */
.hero {
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
    padding: 60px 24px 40px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 190, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(244, 98, 10, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--secondary);
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-soft);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--primary);
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(30px, 7vw, 78px);
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 24px;
}

.hero h1 span.hl {
    color: var(--primary);
    font-style: italic;
    background: linear-gradient(120deg, transparent 0%, transparent 60%, var(--secondary-warm) 60%, var(--secondary-warm) 90%, transparent 90%);
    background-size: 100% 40%;
    background-repeat: no-repeat;
    background-position: 0 85%;
}

.hero-sub {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--gray);
    max-width: 680px;
    margin: 0 auto 48px;
    font-weight: 500;
}

.hero-trust {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--gray);
    font-weight: 700;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- RECIPE STRIP --- */
.recipe-strip {
    background: linear-gradient(135deg, var(--primary) 0%, #C94900 100%);
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.recipe-strip::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.recipe-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.recipe-strip .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.recipe-strip .section-title {
    color: #fff;
    margin-bottom: 24px;
}

.recipe-strip .section-sub {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 60px;
}

.numbers-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.num-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.num-item .big-num {
    font-family: var(--font-serif);
    font-size: clamp(48px, 6vw, 74px);
    font-weight: 900;
    color: var(--secondary-warm);
    line-height: 1;
    margin-bottom: 12px;
}

/* --- DISH SHOWCASE --- */
.dishes {
    background: var(--white);
    padding: 60px 24px;
}

.dishes-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.dish-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.dish-img-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.dish-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dish-card:hover .dish-img-container img {
    transform: scale(1.1);
}

.dish-content {
    padding: 32px 28px;
    text-align: left;
    flex-grow: 1;
}

.dish-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: var(--font-serif);
}

.dish-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

/* --- LEARN SECTION --- */
.learn {
    background: var(--bg-cream);
    padding: 60px 24px;
}

.learn-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.learn-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.learn-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.learn-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.learn-item h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

/* --- BIO SECTION --- */
.bio {
    background: var(--white);
    padding: 60px 24px;
}

.bio-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 80px;
}

@media (max-width: 850px) {
    .bio-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.bio-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.bio-img-wrapper img {
    width: 100%;
    display: block;
}

.bio-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 10px solid var(--secondary);
    border-radius: var(--radius-lg);
    z-index: 1;
    pointer-events: none;
    transform: translate(20px, 20px);
    opacity: 0.3;
}

.bio-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 24px;
}

.bio-text p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 20px;
}

.bio-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.chip {
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 800;
}

/* --- TESTIMONIALS --- */
.testimonials {
    background: var(--secondary-warm);
    padding: 60px 24px;
}

.t-grid {
    max-width: 1200px;
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.t-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.t-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-serif);
    font-size: 80px;
    color: var(--gray-light);
    line-height: 1;
}

.t-stars {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 20px;
}

/* --- OFFER BOX --- */
.offer {
    background: var(--bg-cream);
    padding: 60px 24px;
}

.offer-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary);
    position: relative;
}

@media (max-width: 600px) {
    .offer-box {
        padding: 40px 24px;
    }
}

.price-main {
    font-family: var(--font-serif);
    font-size: clamp(64px, 10vw, 100px);
    font-weight: 900;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    line-height: 1;
}

.price-prefix {
    font-size: 32px;
    margin-top: 15px;
}

.price-cents {
    font-size: 44px;
    margin-top: 20px;
}

/* --- FAQ --- */
.faq {
    background: var(--white);
    padding: 60px 24px;
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 16px;
}

.faq-q {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-sans);
}

.faq-icon {
    transition: transform 0.3s ease;
    background: var(--primary-light);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.open .faq-a {
    max-height: 500px;
    padding-bottom: 24px;
}

/* --- STICKY BAR --- */
.sticky-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    padding: 16px 32px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(150px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-bar.show {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .sticky-bar {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 12px 20px;
        border-radius: 20px;
    }

    .sticky-bar-text {
        display: none;
    }

    .btn-sticky {
        width: 100%;
        text-align: center;
    }
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 98, 10, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(244, 98, 10, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 98, 10, 0);
    }
}

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