/* ============================================
   BROKER CARA — Culinaristas Nestlé
   estilo.css — Versão Premium
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red:          #c8001e;
    --red-light:    #e8002a;
    --red-dark:     #8a0014;
    --gold:         #c9a84c;
    --gold-light:   #e8c96a;
    --cream:        #fdf8f0;
    --ivory:        #f7f2e8;
    --dark:         #111010;
    --dark-mid:     #1e1c1c;
    --charcoal:     #2e2b2b;
    --gray:         #5a5757;
    --gray-light:   #ede9e2;
    --white:        #ffffff;

    --ff-display:   'Playfair Display', Georgia, serif;
    --ff-body:      'Cormorant Garamond', Georgia, serif;
    --ff-ui:        'Jost', sans-serif;

    --section-pad:  6rem 0;
    --container-w:  1160px;
    --radius-sm:    6px;
    --radius-md:    16px;
    --radius-lg:    32px;

    --shadow-sm:    0 2px 12px rgba(0,0,0,.08);
    --shadow-md:    0 8px 32px rgba(0,0,0,.12);
    --shadow-lg:    0 20px 60px rgba(0,0,0,.18);
    --shadow-red:   0 8px 30px rgba(200,0,30,.22);
    --shadow-gold:  0 6px 24px rgba(201,168,76,.28);

    --transition:   all .35s cubic-bezier(.4,0,.2,1);
}

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

body {
    font-family: var(--ff-body);
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.gold-line {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 1.2rem auto;
}

.tag-pill {
    display: inline-block;
    font-family: var(--ff-ui);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.3);
    padding: .35rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

/* ============================================
   NAV BAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(17,16,16,.95);
    backdrop-filter: blur(12px);
    padding: .8rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo-text {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: .04em;
}

.nav-logo-text span {
    color: var(--gold);
}

.nav-badge {
    font-family: var(--ff-ui);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: .25rem .8rem;
    border-radius: 20px;
}

.nav-cta {
    font-family: var(--ff-ui);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    padding: .6rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: var(--transition);
    display: none;
}

.navbar.scrolled .nav-cta {
    display: inline-block;
}

.nav-cta:hover {
    background: transparent;
    border-color: var(--red);
    color: var(--red-light);
}

/* ============================================
   HERO — PARALLAX
   ============================================ */
.hero-section {
    min-height: 100vh;
    background-image: url('culinarista.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(17,16,16,.6) 0%,
        rgba(17,16,16,.3) 40%,
        rgba(17,16,16,.75) 80%,
        rgba(17,16,16,.95) 100%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem 6rem;
    max-width: var(--container-w);
    margin: 0 auto;
    width: 100%;
}

.hero-eyebrow {
    font-family: var(--ff-ui);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .8rem;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 300;
    color: rgba(255,255,255,.8);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--ff-ui);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    padding: 1rem 2.4rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid var(--red);
    transition: var(--transition);
    box-shadow: var(--shadow-red);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200,0,30,.35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--ff-ui);
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.3);
    transition: var(--transition);
    cursor: pointer;
}

.btn-ghost:hover {
    color: var(--white);
    border-color: var(--gold);
    background: rgba(201,168,76,.1);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    font-family: var(--ff-ui);
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: .4; transform: scaleY(1); }
    50%       { opacity: 1;  transform: scaleY(1.2); }
}

/* ============================================
   DIVIDER RIBBON
   ============================================ */
.ribbon {
    background: var(--red);
    padding: 1.4rem 0;
    overflow: hidden;
}

.ribbon-inner {
    display: flex;
    gap: 3rem;
    animation: ribbonScroll 20s linear infinite;
    white-space: nowrap;
}

.ribbon-item {
    font-family: var(--ff-ui);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.ribbon-item::before {
    content: '✦';
    color: var(--gold-light);
    font-size: .6rem;
}

@keyframes ribbonScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================
   SECTION — BENEFITS
   ============================================ */
.benefits-section {
    padding: var(--section-pad);
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-tag {
    font-family: var(--ff-ui);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: .8rem;
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.section-title em {
    font-style: italic;
    color: var(--red);
}

.section-lead {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    group: true;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transition: width .5s cubic-bezier(.4,0,.2,1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.benefit-card:hover::after {
    width: 100%;
}

.benefit-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,0,30,.08), rgba(201,168,76,.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    border: 1px solid rgba(201,168,76,.2);
}

.benefit-card h3 {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .8rem;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.75;
    font-weight: 300;
}

/* ============================================
   SECTION — CHEF PROFILE
   ============================================ */
.chef-section {
    padding: var(--section-pad);
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.chef-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
    pointer-events: none;
}

.chef-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.chef-visual {
    position: relative;
}

.chef-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--charcoal);
    box-shadow: var(--shadow-lg);
}

.chef-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chef-frame-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal), var(--dark-mid));
    font-size: 8rem;
    opacity: .3;
}

.chef-ornament {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(201,168,76,.3);
    border-radius: var(--radius-md);
    pointer-events: none;
}

.chef-badge-float {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: var(--red);
    color: var(--white);
    padding: 1.2rem 1.8rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-red);
    font-family: var(--ff-ui);
    text-align: center;
    min-width: 150px;
}

.chef-badge-float .big-num {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.chef-badge-float .small-text {
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .85;
    margin-top: .3rem;
    display: block;
}

.chef-info .section-tag {
    text-align: left;
}

.chef-name {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: .5rem;
}

.chef-name em {
    color: var(--gold);
    font-style: italic;
}

.chef-role {
    font-family: var(--ff-ui);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.chef-bio {
    font-size: 1.1rem;
    color: rgba(255,255,255,.65);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.chef-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-family: var(--ff-ui);
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-top: .4rem;
    display: block;
}

.chef-regions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.region-tag {
    font-family: var(--ff-ui);
    font-size: .75rem;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    padding: .4rem 1rem;
    border-radius: 20px;
    letter-spacing: .06em;
}

/* ============================================
   SECTION — PROCESS
   ============================================ */
.process-section {
    padding: var(--section-pad);
    background-image: url('feitos.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(253,248,240,.95);
}

.process-section .container {
    position: relative;
    z-index: 2;
}

.process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(0,0,0,.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 1rem;
}

.process-step {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    background: var(--dark);
}

.process-step:hover .step-num,
.process-step:hover .step-title,
.process-step:hover .step-desc {
    color: var(--white);
}

.process-step:hover .step-icon {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
}

.step-num {
    font-family: var(--ff-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(200,0,30,.08);
    line-height: 1;
    transition: var(--transition);
    display: block;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(200,0,30,.07);
    border: 1px solid rgba(200,0,30,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.step-title {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .7rem;
    transition: var(--transition);
}

.step-desc {
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    transition: var(--transition);
}

/* ============================================
   SECTION — SEASONAL
   ============================================ */
.seasonal-section {
    padding: var(--section-pad);
    background: var(--ivory);
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: .5rem;
}

.seasonal-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,.05);
    transition: var(--transition);
    position: relative;
}

.seasonal-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.seasonal-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.seasonal-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.seasonal-name {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .4rem;
}

.seasonal-desc {
    font-size: .95rem;
    color: var(--gray);
    font-weight: 300;
}

.seasonal-footer {
    padding: 1rem 2rem;
    border-top: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.seasonal-label {
    font-family: var(--ff-ui);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
}

/* ============================================
   SECTION — TESTIMONIAL / QUOTE
   ============================================ */
.quote-section {
    padding: 5rem 0;
    background: var(--red);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--ff-display);
    font-size: 18rem;
    color: rgba(255,255,255,.06);
    line-height: 1;
    pointer-events: none;
}

.quote-text {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.quote-author {
    font-family: var(--ff-ui);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    position: relative;
    z-index: 2;
}

.quote-author::before {
    content: '— ';
}

/* ============================================
   SECTION — CTA
   ============================================ */
.cta-section {
    padding: var(--section-pad);
    background: var(--cream);
}

.cta-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200,0,30,.25) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.12) 0%, transparent 60%);
    pointer-events: none;
}

.cta-card .section-tag { text-align: center; }

.cta-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.cta-title em {
    font-style: italic;
    color: var(--gold);
}

.cta-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,.6);
    max-width: 480px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--ff-ui);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 1rem 2.4rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,76,.35);
}

.contact-strip {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    max-width: 700px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,.06);
}

.contact-info-name {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .3rem;
}

.contact-info-role {
    font-family: var(--ff-ui);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
}

.contact-info-phone {
    font-family: var(--ff-ui);
    font-size: 1.05rem;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.contact-info-regions {
    font-size: .9rem;
    color: var(--gray);
    margin-top: .5rem;
    font-weight: 300;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark);
    padding: 3rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--white);
}

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

.footer-copy {
    font-family: var(--ff-ui);
    font-size: .8rem;
    color: rgba(255,255,255,.35);
    text-align: center;
}

.footer-nestle {
    font-family: var(--ff-ui);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    text-align: right;
}

/* ============================================
   SECTION — PRODUCT MULTI-CARD CAROUSEL
   ============================================ */
.products-slider-section {
    padding: var(--section-pad);
    background: var(--ivory);
    overflow: hidden;
}

/* Full-bleed outer wrapper */
.mc-carousel-outer {
    position: relative;
    width: 100%;
    padding-bottom: 3.5rem;
}

/* The carousel stage */
.mc-carousel {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    user-select: none;
}

.mc-carousel:active { cursor: grabbing; }

/* ── Cards ── */
.mc-card {
    position: absolute;
    width: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform .6s cubic-bezier(.4,0,.2,1),
                opacity   .6s cubic-bezier(.4,0,.2,1),
                box-shadow .6s cubic-bezier(.4,0,.2,1),
                filter     .6s cubic-bezier(.4,0,.2,1);
    will-change: transform, opacity;
    cursor: pointer;
}

.mc-card-img-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--dark-mid);
}

.mc-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.4,0,.2,1);
}

.mc-card:hover .mc-card-img-wrap img {
    transform: scale(1.04);
}

/* Shine overlay on hover */
.mc-card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255,255,255,.08) 0%,
        transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
    border-radius: var(--radius-md);
}

.mc-card:hover .mc-card-shine { opacity: 1; }

/* Caption below image */
.mc-card-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1.1rem .6rem;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,.04);
    transition: background .4s;
}

.mc-card-num {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.mc-card-name {
    font-family: var(--ff-ui);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gray);
}

/* ── Positional states ── */

/* Center card — full size, fully visible */
.mc-card.mc-center {
    transform: translateX(0) scale(1);
    opacity: 1;
    box-shadow: 0 24px 64px rgba(0,0,0,.22), 0 0 0 1px rgba(201,168,76,.18);
    z-index: 10;
    cursor: default;
}

.mc-card.mc-center .mc-card-caption {
    background: linear-gradient(135deg, var(--cream), var(--white));
}

/* Immediate side cards */
.mc-card.mc-side-1.mc-left {
    transform: translateX(-330px) scale(.82) rotateY(4deg);
    opacity: .65;
    filter: brightness(.88);
    z-index: 5;
}

.mc-card.mc-side-1.mc-right {
    transform: translateX(330px) scale(.82) rotateY(-4deg);
    opacity: .65;
    filter: brightness(.88);
    z-index: 5;
}

/* Further cards — hidden behind */
.mc-card.mc-side-2 {
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.mc-card.mc-side-2.mc-left  { transform: translateX(-580px) scale(.65); }
.mc-card.mc-side-2.mc-right { transform: translateX(580px)  scale(.65); }

/* ── Controls ── */
.mc-controls {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.mc-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,.35);
    background: var(--white);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.mc-btn:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.mc-progress {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.mc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(90,87,87,.25);
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.mc-dot.active {
    background: var(--gold);
    transform: scale(1.4);
    box-shadow: 0 0 0 2px rgba(201,168,76,.25);
}

.mc-dot:hover:not(.active) {
    background: var(--red);
    transform: scale(1.2);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .mc-carousel {
        height: 360px;
    }

    .mc-card {
        width: 230px;
    }

    .mc-card.mc-side-1.mc-left  { transform: translateX(-240px) scale(.78) rotateY(3deg); }
    .mc-card.mc-side-1.mc-right { transform: translateX(240px)  scale(.78) rotateY(-3deg); }
}

@media (max-width: 480px) {
    .mc-carousel {
        height: 300px;
    }

    .mc-card {
        width: 190px;
    }

    .mc-card.mc-side-1.mc-left  { transform: translateX(-195px) scale(.74); opacity: .5; }
    .mc-card.mc-side-1.mc-right { transform: translateX(195px)  scale(.74); opacity: .5; }
}

/* ============================================
   DELÍCIAS — MARQUEE PHOTO CAROUSEL
   ============================================ */
.delicias-block {
    margin-top: 4.5rem;
}

.delicias-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.delicias-title {
    font-family: var(--ff-display);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 700;
    font-style: italic;
    color: var(--red);
    line-height: 1.3;
}

.delicias-marquee-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.delicias-marquee {
    width: 100%;
    overflow: hidden;
}

.delicias-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: deliciasScroll 34s linear infinite;
}

.delicias-marquee:hover .delicias-track {
    animation-play-state: paused;
}

.delicias-item {
    flex-shrink: 0;
    width: 230px;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--dark-mid);
}

.delicias-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.delicias-item:hover img {
    transform: scale(1.05);
}

@keyframes deliciasScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .delicias-item { width: 170px; }
    .delicias-track { gap: .9rem; animation-duration: 26s; }
}

@media (max-width: 480px) {
    .delicias-item { width: 140px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .chef-visual {
        max-width: 420px;
        margin: 0 auto;
    }

    .chef-badge-float {
        right: .5rem;
    }

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

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

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {
    :root {
        --section-pad: 4rem 0;
    }

    .hero-section {
        background-attachment: scroll;
    }

    .hero-content {
        padding: 0 1.5rem 4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }

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

    .process-section {
        background-attachment: scroll;
    }

    .process-track {
        grid-template-columns: 1fr;
    }

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

    .cta-card {
        padding: 3rem 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn-gold,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .contact-strip {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .contact-info-phone {
        justify-content: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-nestle {
        text-align: center;
    }

    .chef-stats {
        gap: 1.5rem;
    }

    .ribbon-inner {
        animation-duration: 14s;
    }

    .hero-scroll {
        display: none;
    }

    .chef-badge-float {
        position: static;
        margin-top: 1.5rem;
        display: inline-block;
        border-radius: var(--radius-sm);
    }
}

@media (max-width: 380px) {
    .seasonal-grid {
        grid-template-columns: 1fr;
    }

    .chef-stats {
        flex-direction: column;
        gap: 1.2rem;
    }
}
