/* ---------------------------------------------------------
   DESIGN SYSTEM & VARIABLES
--------------------------------------------------------- */
:root {
    --color-terracotta: #a63c1a;
    --color-yellow: #ffbd17;
    --color-yellow-light: #ffd939;
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-dim: rgba(255, 255, 255, 0.7);
    --font-inter: 'Inter', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
    --font-sora: 'Sora', sans-serif;
    --shadow-premium: 0 20px 40px rgba(0,0,0,0.1);
    --shadow-text: 0 4px 12px rgba(0,0,0,0.15);
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-max-width: 1280px;
    --container-padding: 40px;
    --gradient-gold: linear-gradient(135deg, #FFC000 0%, #FFD939 100%);
}

@media (max-width: 768px) {
    :root {
        --container-padding: 24px; /* Aumentado para maior margem de segurança */
    }
    
    .hidden-mobile {
        display: none !important;
    }

    .section-title, .hero-title, .exp-title, .event-title, .card-title, .elementor-heading, .experience-heading, h1, h2, h3 {
        text-wrap: balance !important;
        text-align: center !important;
    }

    .force-left-mobile {
        text-align: left !important;
    }
}

/* ---------------------------------------------------------
   BASE STYLES
--------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

img {
    max-width: 100%;
    height: auto;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

body {
    font-family: var(--font-inter);
    background-color: #1E1E1E;
    color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Subtly Grain Texture Overlay — Desktop Only */
@media (min-width: 769px) {
    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        opacity: 0.04;
        pointer-events: none;
        z-index: 9999;
    }
}

/* ---------------------------------------------------------
   HERO SECTION (PIXEL PERFECT)
--------------------------------------------------------- */
.hero-section {
    width: 100%;
    height: 100vh; /* Full screen experience */
    position: relative;
    overflow: hidden;
    margin: 0;
    background: #1E1E1E;
}

.hero-lupa {
    position: absolute;
    top: -500px; /* Start off-screen */
    left: -500px;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    width: 240px;
    height: 240px;
    background: url("../../frame_1707478427.webp");
    background-repeat: no-repeat;
    background-size: 1600px; /* High zoom */
    filter: drop-shadow(0px 20px 40px rgba(0,0,0,0.7));
    z-index: 2;
    pointer-events: none;
    border: 2px solid rgba(255,255,255,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media(max-width: 1024px){
    .hero-lupa {
        width: 160px;
        height: 160px;
        background-size: 1000px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../../frame_1707478427.webp");
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay-band {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 280px;
    z-index: 2;
}

.hero-overlay-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../../frame_1707478427.webp");
    background-size: cover;
    background-position: center bottom;
    filter: blur(4px);
    transform: scale(1.04);
    z-index: 1;
}

.hero-overlay-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(50, 25, 10, 0.38);
    z-index: 2;
}

.hero-overlay-content {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    padding: 0 var(--container-padding);
}

.hero-title {
    margin: 0;
    color: #FFFFFF;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: clamp(32px, 5.5vw, 64px);
    line-height: 1.1;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-content-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    max-width: 440px;
}

.hero-description {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.5;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.51);
    background: linear-gradient(90deg, #FFC000 0%, #FFD939 100%);
    box-shadow: 0px 108px 30px 0px rgba(229, 194, 49, 0.00), 
                0px 69px 28px 0px rgba(229, 194, 49, 0.03), 
                0px 39px 23px 0px rgba(229, 194, 49, 0.10), 
                0px 17px 17px 0px rgba(229, 194, 49, 0.17), 
                0px 0px 13.4px 0px rgba(229, 194, 49, 0.30) !important;
    color: #000407;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    width: 100%;
    max-width: 440px;
    margin-top: 15px;
    height: auto;
}

.hero-cta i, 
.hero-cta svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.hero-cta:hover i, 
.hero-cta:hover svg {
    transform: translateX(4px) scale(1.1);
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh !important;
    }
    .hero-bg {
        background-image: url("../../bgmob.webp") !important;
        background-position: center 20% !important;
        filter: none !important; /* Restaurado cor real */
    }
    .hero-overlay-band {
        height: 100% !important;
        bottom: 0 !important;
        display: flex;
        align-items: flex-end;
    }
    .hero-overlay-band::before {
        background-image: url("../../bgmob.webp") !important;
        filter: blur(12px) !important; /* Apenas blur, cor real */
        transform: scale(1.1);
        -webkit-mask-image: linear-gradient(to bottom, transparent 30%, black 50%) !important;
        mask-image: linear-gradient(to bottom, transparent 30%, black 50%) !important;
    }
    .hero-overlay-band::after {
        /* Degradê neutro apenas para legibilidade no rodapé */
        background: linear-gradient(to bottom, 
            transparent 30%, 
            rgba(0,0,0,0.4) 60%, 
            rgba(0,0,0,0.8) 100%) !important;
    }
    .hero-overlay-content {
        flex-direction: column;
        justify-content: flex-end;
        text-align: center;
        gap: 15px;
        padding: 0 var(--container-padding) 60px !important; /* Espaço do rodapé */
        width: 100%;
        height: 60%; /* Altura relativa para o conteúdo */
    }
    .hero-title {
        text-align: center;
        font-size: 34px; /* Aumentado levemente */
        line-height: 1.05;
        letter-spacing: -0.02em;
        margin-bottom: 5px;
        text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    }
    .hero-content-right {
        align-items: center;
        text-align: center;
        width: 100%;
        gap: 15px;
    }
    .hero-description {
        font-size: 14px;
        line-height: 1.4;
        max-width: 340px; /* Aumentado para melhor estrutura de quebras */
        margin: 0 auto;
        color: rgba(255,255,255,0.95);
        font-weight: 400;
        text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    .hero-cta {
        max-width: 100%;
        margin-top: 15px;
        padding: 18px 20px;
        font-size: 16px;
    }
}

.hero-cta:hover {
    transform: scale(1.03);
    box-shadow: 0px 0px 30px 0px rgba(229, 194, 49, 0.00), 
                0px 0px 28px 0px rgba(229, 194, 49, 0.03), 
                0px 0px 23px 0px rgba(229, 194, 49, 0.10), 
                0px 0px 17px 0px rgba(229, 194, 49, 0.17), 
                0px 0px 13.4px 0px rgba(229, 194, 49, 0.30) !important;
}

.hero-cta i,
.hero-cta svg {
    width: 24px;
    height: 24px;
    font-size: 24px;
}

/* ---------------------------------------------------------
   ELEMENTOR REPRODUCTION SECTION (bc1f634)
--------------------------------------------------------- */
.elementor-section-bc1f634 {
    background-color: #ffffff;
    padding: 120px var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
}

.elementor-container-boxed {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.elementor-heading-5b1d6f1 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding-bottom: 10px;
    color: #1a1a1a;
}

.elementor-text-editor-f5e5202 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #666666;
    text-align: center;
    max-width: 800px;
    line-height: 1.6;
}

.elementor-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
    width: 100%;
}

.elementor-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.elementor-card {
    position: relative;
    border-radius: 23.446px;
    overflow: hidden;
    background-color: #F6BB06;
    min-height: 375px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.elementor-card.large {
    flex: 1;
}

.elementor-card.small {
    flex: 1;
    min-height: 180px;
}

.elementor-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.elementor-card:hover img[alt="Card Background"] {
    transform: scale(1.05);
}

img[alt="Card Background"] {
    transition: var(--transition-smooth);
}

.elementor-card.large.card-1,
.elementor-card.large.card-2 {
    background-color: #F6BB06;
    border-radius: clamp(13px, 3.5vw, 23px);
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    min-height: auto;
    border: none;
    box-shadow: none;
    container-type: inline-size;
    padding: 0 !important;
}

/* Aspect Ratio and Toggle Control */
@media (min-width: 1024px) {
    .elementor-card.large.card-1,
    .elementor-card.large.card-2 {
        aspect-ratio: 697 / 375;
    }
    .card-desktop { display: block; height: 100%; width: 100%; }
    .card-mobile { display: none; }
}

@media (max-width: 1023px) {
    .elementor-card.large.card-1,
    .elementor-card.large.card-2 {
        aspect-ratio: 460 / 400;
    }
    .card-desktop { display: none; }
    .card-mobile { display: block; height: 100%; width: 100%; position: relative; }
}

.full-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Posicionamento do conteúdo baseado no grid do SVG (460x400) */
.card-content-mobile {
    position: absolute;
    left: 8%;
    top: 30%;  
    width: 60%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Força alinhamento à esquerda dos itens flex */
    gap: 4px;
    text-align: left !important; /* Alinhado à esquerda forçado */
}

.card-title-mobile {
    font-family: 'Neue Plak Text Black', 'Inter', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(14px, 5vw, 17px);
    line-height: 1.1;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    text-align: left !important; /* Força alinhamento à esquerda contra regra global */
}

/* Desktop Overrides for Card Content */
@media (min-width: 1024px) {
    .card-content-mobile {
        left: 50px !important;
        top: 115px !important;
        width: 380px !important;
    }
    .card-title-mobile {
        font-size: 30px !important; /* Diminuído levemente */
        margin-bottom: 10px !important;
        letter-spacing: -0.01em !important;
    }
    .card-description-mobile {
        font-size: 13px !important; /* Diminuído bem mais */
        line-height: 1.5 !important;
        color: rgba(0,0,0,0.8) !important;
        max-width: 300px !important;
    }
}


.card-description-mobile {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(9px, 2.8vw, 11px);
    line-height: 1.2;
    color: #000000;
    margin: 2px 0 0 0;
    width: 100%;
    opacity: 0.9;
    text-align: left !important; /* Força alinhamento à esquerda contra regra global */
}

.card-pills-mobile {
    position: absolute;
    right: 8%;
    top: 12%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    z-index: 5;
}

.card-pills-mobile .pill {
    background: rgba(0, 0, 0, 0.03);
    color: #000000;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
    height: 22px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    /* backdrop-filter removido — mobile perf */
    border: 1px solid rgba(0,0,0,0.15);
}

.card-content {
    position: static;
}

/* Estilos simplificados para cards baseados em imagem (SVG) */

/* ---------------------------------------------------------
   RESPONSIVE (Elementor Reproduction)
--------------------------------------------------------- */
@media (max-width: 1024px) {
    .elementor-section-bc1f634 {
        padding: 80px var(--container-padding);
    }
}

@media (max-width: 768px) {
    .elementor-section-bc1f634 {
        padding: 60px var(--container-padding);
    }
    .elementor-heading-5b1d6f1 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .elementor-row {
        flex-direction: column;
        gap: 24px;
    }
    .elementor-card {
        height: auto;
        min-height: 200px;
        padding: 30px;
    }
    .elementor-card.large.card-pizza-bg .card-content {
        padding-bottom: 120px;
    }
    .elementor-card.card-monte-pizza .card-content {
        padding-bottom: 80px;
    }
    .elementor-card h3 {
        font-size: 24px;
    }
    .pill {
        font-size: 10px;
        height: 24px;
        padding: 0 12px;
    }
}



/* ---------------------------------------------------------
   RESPONSIVE (General)
--------------------------------------------------------- */
@media (max-width: 768px) {
    .navbar {
        padding: 20px var(--container-padding);
        justify-content: center;
    }
    .nav-links {
        display: none; /* Hide links on mobile for now, or use a burger menu */
    }
    .editorial-container {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .editorial-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding-left: 20px;
    }
    .editorial-title {
        font-size: 42px;
    }
}

/* ---------------------------------------------------------
   ANIMATIONS & EFFECTS
--------------------------------------------------------- */


.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--color-white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-yellow);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

/* ---------------------------------------------------------
   UTILITIES & GLOBAL SECTION HEADERS
--------------------------------------------------------- */
.section-title {
    font-family: var(--font-poppins);
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: var(--color-white);
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
    text-shadow: var(--shadow-text);
}

.section-title span, 
.section-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    font-family: var(--font-inter);
    font-size: clamp(14px, 1.1vw, 17px);
    font-weight: 400;
    line-height: 1.7;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    color: var(--color-dim);
    letter-spacing: 0.01em;
}

/* Decorative Pre-title */
.pre-title {
    display: block;
    font-family: var(--font-sora);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-yellow);
    margin-bottom: 16px;
    text-align: center;
}

/* Light Background Support */
.light-section .section-title {
    color: var(--color-black);
    text-shadow: none;
}

.light-section .section-subtitle {
    color: rgba(26, 26, 26, 0.7); /* Usando um cinza escuro legível */
}

.light-section .pre-title {
    color: var(--color-terracotta); /* Mudando pre-title para terracotta em fundo branco para melhor contraste */
}

/* Overrides para Seção 3 (Alinhamento à Esquerda no Desktop) */
@media (min-width: 1024px) {
    .experience-heading.section-title {
        text-align: left;
        margin: 0;
    }
    .experience-subheading.section-subtitle {
        text-align: left;
        margin: 0;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
        line-height: 1.25;
        letter-spacing: -0.02em;
        margin-bottom: 16px;
    }
    .section-subtitle {
        font-size: 14px;
        line-height: 1.7;
        max-width: 100%;
        padding: 0;
    }
    .pre-title {
        font-size: 11px;
        letter-spacing: 0.15em;
        margin-bottom: 12px;
    }
    .hidden-mobile {
        display: none;
    }
}

.glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 769px) {
    .glass {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}


/* ---------------------------------------------------------
   EXPERIENCE SECTION (SECTION 3) - NEW 2-COLUMN LAYOUT
--------------------------------------------------------- */
.experience-section-new {
    width: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.experience-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 120px var(--container-padding);
    display: flex;
    flex-direction: column-reverse; /* Carrossel em cima, texto embaixo no mobile */
    align-items: center;
    gap: 60px;
}

@media (min-width: 1024px) {
    .experience-container {
        flex-direction: row;
        padding: 40px 20px;
        gap: 40px;
    }
}

/* Coluna Esquerda */
.experience-text-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .experience-text-col {
        width: 50%;
        align-items: flex-start;
        text-align: left;
    }
}


/* Estilos para o SVG acima do título */
.experience-svg {
    width: 160px; /* Reduzido de 220px */
    height: auto;
    margin-bottom: 12px;
    position: relative;
    z-index: 10;
    pointer-events: none;
    filter: brightness(0) invert(1); /* Torna o logo branco */
}

@media (max-width: 768px) {
    .experience-svg {
        width: 110px; /* Reduzido de 140px */
        margin-bottom: 8px;
    }
}

.experience-text-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 32px;
    position: relative;
    z-index: 20;
}

.experience-heading {
    color: #ffffff;
    margin: 0;
    text-wrap: balance;
    letter-spacing: -0.5px;
}

.experience-heading .highlight {
    color: #FFC20A;
}

@media (min-width: 1024px) {
    .experience-heading {
        max-width: 90%;
    }
}

.experience-subheading {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Coluna Direita (Carrossel) com Perspectiva */
.experience-visual-col {
    width: 100%;
    display: flex;
    justify-content: center;
    perspective: 1000px; /* Profundidade para o efeito 3D */
}

@media (min-width: 1024px) {
    .experience-visual-col {
        width: 55%; /* Aumentado levemente */
        margin-left: -5%; /* Sobreposição sutil */
    }
}

.container-das-colunas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    height: 800px;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    transform: rotateX(10deg) rotateY(-15deg) rotateZ(5deg); /* Efeito 3D Premium */
    transform-style: preserve-3d;
}

.scroll-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.up .scroll-container {
    animation: scrollUp 18s linear infinite; /* Acelerado de 35s */
}

.down .scroll-container {
    animation: scrollDown 18s linear infinite; /* Acelerado de 35s */
}

.poster-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.poster-img:hover {
    transform: translateZ(20px); /* Salta um pouco no hover */
}

@media (max-width: 768px) {
    .experience-visual-col {
        perspective: none;
    }
    .container-das-colunas {
        gap: 8px;
        height: 500px;
        transform: none; /* Remove 3D no mobile para performance */
    }
}

/* Ajuste na Coluna de Texto */
.experience-text-col {
    position: relative;
    z-index: 100; /* Garante que o texto fique sobre o carrossel se necessário */
}



/* ---------------------------------------------------------
   TICKER SECTION (YELLOW BAND)
   Infinite horizontal scroll as per Elementor JSON
--------------------------------------------------------- */
.ticker-section {
    background-color: #FFD600;
    border-top: 1px solid #4E4E4E;
    border-bottom: 1px solid #4E4E4E;
    padding: 0.6em 0 0.4em 0; /* Reduzido de 1.2em */
    overflow: hidden;
    position: relative;
    width: 100%;
}

.ticker-wrapper {
    display: flex;
    width: max-content;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-right: 80px; /* Deve ser igual ao gap */
    animation: ticker-scroll 30s linear infinite;
    flex-shrink: 0;
}

.ticker-track img {
    height: 28px;
    width: auto;
    filter: brightness(0);
    opacity: 0.8;
    flex-shrink: 0;
    pointer-events: none;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .ticker-section {
        padding: 0.8em 0;
    }
    .ticker-track {
        gap: 40px;
        padding-left: 40px;
        animation-duration: 25s;
    }
    .ticker-track img {
        height: 18px; /* Reduzido de 30px */
    }
    
    .hero-cta {
        font-size: 16px !important;
        padding: 16px 20px !important;
        width: 100% !important;
        max-width: none !important;
    }
}

/* ---------------------------------------------------------
   SIMULATOR SECTION (SECTION 4) - BRANDED COLOR DESIGN
--------------------------------------------------------- */
.simulator-section {
    background-color: #ffffff;
    padding: 120px var(--container-padding);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: auto;
    color: #000000;
    position: relative;
    width: 100%;
}

.calc-container {
    background: linear-gradient(#FFC20A, #FFC20A) padding-box,
                linear-gradient(135deg, #a63c1a, #FFC20A, #822e14) border-box;
    border: 3px solid transparent;
    border-radius: 32px;
    padding: 60px 100px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

/* Cabeçalho do Simulador */
.calc-header-wrapper {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 32px;
    gap: 20px;
}

@media (max-width: 600px) {
    .calc-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .badge-branded {
        order: 2;
    }
    .calc-logo {
        order: 1;
        height: 35px !important;
    }
}

/* Badge Branded */
.badge-branded {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(166, 60, 26, 0.08);
    border: 1px solid rgba(166, 60, 26, 0.15);
    padding: 8px 16px;
    border-radius: 99px;
    white-space: nowrap;
}
.badge-dot {
    width: 6px;
    height: 6px;
    background: #a63c1a;
    border-radius: 50%;
    display: block;
    animation: pulse 2s infinite;
}
.badge-text {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #a63c1a;
    text-transform: uppercase;
}

/* Cabeçalho */
.calc-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.calc-header h2 {
    margin: 0 0 6px 0;
    font-size: 32px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1.2px;
    color: #000000;
}
.calc-header p {
    margin: 0;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    font-weight: 500;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 120px;
}

/* Controlos da Esquerda */
.form-group {
    margin-bottom: 35px;
}

.label-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    width: 100%;
}
.label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a63c1a;
    margin: 0;
    flex: 1;
}
.valor-display {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    color: #000000;
    text-align: right;
    min-width: 60px;
}

/* Sliders */
.range { width: 100%; }

input[type="range"] { 
    -webkit-appearance: none;
    appearance: none;
    width: 100%; 
    height: 8px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    background-image: linear-gradient(to right, #a63c1a, #822e14);
    background-size: var(--progress, 50%) 100%;
    background-repeat: no-repeat;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffffff;
    border: 7px solid #a63c1a;
    box-shadow: 0 5px 15px rgba(166, 60, 26, 0.3);
    cursor: grab;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input[type="range"]::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(166, 60, 26, 0.4);
}

.minmax {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.3);
    margin-top: 14px;
    font-weight: 800;
}

/* Botões de Pacotes */
.plat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.plat {
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #000000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.plat .icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(166, 60, 26, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a63c1a;
}

.plat span {
    font-size: 14px;
    font-weight: 700;
}

.plat.active {
    background: #ffffff;
    border-color: #a63c1a;
    box-shadow: 0 8px 20px rgba(166, 60, 26, 0.15);
}

.plat:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

@media (max-width: 480px) {
    .plat-grid {
        grid-template-columns: 1fr;
    }
    .plat {
        flex-direction: row;
        text-align: left;
        padding: 16px 20px;
    }
}
.plat.active {
    background: #ffffff;
    border-color: #a63c1a;
    box-shadow: 0 15px 35px rgba(166, 60, 26, 0.1);
}
.plat .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.04);
    color: inherit;
    transition: all 0.3s ease;
}
.plat.active .icon-wrapper {
    background: #a63c1a;
    color: #ffffff;
}
.plat span { 
    font-size: 16px;
    font-weight: 700; 
    font-family: 'Poppins', sans-serif;
}

/* Resultados (Direita) */
.results-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.result-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 35px 40px;
}

.result-card.highlight {
    background: #a63c1a; /* Terracota da marca */
    border: none;
    box-shadow: 0 25px 50px rgba(166, 60, 26, 0.3);
    color: #ffffff;
}

.result-title {
    font-size: 11px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-card.highlight .result-title {
    color: rgba(255, 255, 255, 0.6);
}

.result-value {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 0 0 6px 0;
    color: #000000;
    font-family: 'Sora', sans-serif;
    line-height: 1.2;
}

.result-card.highlight .result-value {
    color: #ffffff;
}

.result-subtext {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.result-card.highlight .result-subtext {
    color: rgba(255, 255, 255, 0.7);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsividade Simulador */
@media (max-width: 1024px) {
    .calc-grid { gap: 60px; }
    .calc-container { padding: 40px; }
}
@media (max-width: 768px) {
    .simulator-section {
        padding: 60px var(--container-padding);
    }
    .section-header-branded {
        margin-bottom: 40px !important;
    }
    .calc-container { 
        padding: 28px 20px;
        width: 100%;
        border-radius: 20px;
    }
    .calc-grid { 
        grid-template-columns: 1fr; 
        gap: 32px; 
    }
    .label {
        font-size: 10px;
        letter-spacing: 1.2px;
    }
    .valor-display {
        font-size: 20px;
    }
    .result-card {
        padding: 24px 20px;
        border-radius: 16px;
    }
    .result-title {
        font-size: 11px;
    }
    .result-value {
        font-size: 32px;
    }
    .result-subtext {
        font-size: 13px;
    }
}

/* ===================================================
   SEÇÃO 5: EXPERIÊNCIA PLUS (DIFERENCIAIS)
=================================================== */
.experience-plus-section {
    position: relative;
    padding: 160px var(--container-padding) 120px var(--container-padding);
    background-color: #A83A17;
    overflow: hidden;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Divisor de Ondas Superior */
.custom-shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.custom-shape-divider-top .shape-fill {
    fill: #FFFFFF;
}

.experience-plus-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.exp-header {
    text-align: center;
    margin-bottom: 80px;
}

.exp-title {
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.exp-title span {
    font-weight: 800;
    color: var(--white);
}

.exp-subtitle {
    margin-bottom: 0;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.exp-card {
    background: rgba(255, 255, 255, 0.05);
    /* backdrop-filter: blur(12px) — removido para perf mobile */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exp-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.exp-card.featured {
    background: var(--color-yellow);
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 12px 40px -10px rgba(255, 189, 23, 0.5);
    transform: scale(1.05);
    z-index: 2;
}

.exp-card.featured:hover {
    transform: scale(1.08) translateY(-12px);
    box-shadow: 0 20px 50px -10px rgba(255, 189, 23, 0.7);
}

.exp-card.featured .exp-card-title {
    color: var(--color-black);
    font-weight: 800;
}

.exp-card.featured .exp-card-text {
    color: rgba(0, 0, 0, 0.8);
}

.exp-card-visual {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--brand-yellow);
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.exp-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-card:hover .exp-card-visual {
    transform: scale(1.02);
}

.exp-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.exp-card.featured .exp-card-title {
    font-weight: 700;
}

.exp-card-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.exp-card.featured .exp-card-text {
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 1024px) {
    .exp-card.featured {
        transform: scale(1);
    }
    .exp-card.featured:hover {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    .exp-title {
        font-size: 26px;
        line-height: 1.2;
    }
    .exp-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .experience-plus-section {
        padding: 80px var(--container-padding) 80px var(--container-padding);
        overflow: visible !important;
    }

    .exp-grid {
        display: block !important;
        padding-bottom: 40px !important;
    }
    
    .exp-card {
        position: -webkit-sticky !important;
        position: sticky !important;
        background: #A83A17 !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 -5px 25px rgba(0,0,0,0.15) !important; /* Sombra consideravelmente mais suave */
        padding: 40px 30px !important;
        border-radius: 40px !important;
        width: 100% !important;
        margin-bottom: 40px !important; /* Espaço de respiro mínimo entre os cards */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        /* Aceleração de Hardware para garantir scroll 100% liso */
        transform: translateZ(0);
        will-change: transform;
    }

    /* Deck Effect: Cartas fixam no topo com um offset progressivo para mostrar a borda da carta de baixo */
    .exp-card:nth-child(1) { top: 60px !important; z-index: 1; }
    .exp-card:nth-child(2) { top: 100px !important; z-index: 2; }
    .exp-card:nth-child(3) { top: 140px !important; z-index: 3; }
    .exp-card:nth-child(4) { top: 180px !important; z-index: 4; }
    .exp-card:nth-child(5) { top: 220px !important; z-index: 5; }
    .exp-card:nth-child(6) { top: 260px !important; z-index: 6; }

    /* Ajuste para evitar que as cartas fiquem muito 'escuras' ou percam contraste no empilhamento */
    .exp-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 40px;
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
        pointer-events: none;
    }

    .exp-card-title {
        font-size: 18px;
    }
    .exp-card-text {
        font-size: 13px;
    }
    
    .event-experience-section {
        padding: 60px var(--container-padding);
    }
    .testimonials-section {
        padding: 60px var(--container-padding);
    }
}
/* ===================================================
   SEÇÃO 6: SABORES DA EXPERIÊNCIA
=================================================== */
.flavors-section {
    background-color: #FFFFFF;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-black);
}

.flavors-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.flavors-header {
    text-align: center;
    margin-bottom: 80px;
}

.flavors-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.fork-icon {
    width: 14px;
    height: auto;
    color: var(--color-yellow);
}

.fork-flipped {
    transform: scaleX(-1);
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.flavor-card {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.flavors-footer-btn {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    width: 100%;
}

@media (max-width: 768px) {
    .flavors-header { margin-bottom: 30px; }
    .flavors-title-wrapper { gap: 10px; }
    
    .flavors-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        overflow: visible !important;
    }

    .flavor-card {
        flex: none !important;
        width: 100% !important;
        text-align: center;
    }

    .flavor-card-visual {
        border-radius: 6px;
        margin-bottom: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .flavor-title {
        font-size: 11px !important; /* Tamanho reduzido para caber em 3 colunas */
        margin-bottom: 4px !important;
        line-height: 1.2 !important;
    }

    .flavor-description {
        font-size: 9px !important; /* Tamanho reduzido para caber em 3 colunas */
        line-height: 1.3 !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden; /* Evita que descrições longas quebrem o alinhamento */
    }

    .flavors-footer-btn {
        margin-top: 30px;
    }
}

.flavor-card-visual {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: var(--color-yellow);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.flavor-card-visual.featured-aspect {
    aspect-ratio: 4/4.5;
}

.flavor-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.flavor-card:hover .flavor-card-visual {
    transform: translateY(-10px);
}

.flavor-card:hover .flavor-card-visual img {
    transform: scale(1.1);
}

.flavors-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
}

.flavors-section {
    padding: 120px var(--container-padding);
}

@media (max-width: 768px) {
    .flavors-section {
        padding: 60px var(--container-padding);
    }
}


.flavor-title {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.flavor-description {
    font-size: 14px;
    color: #888888;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .flavors-section {
        padding: 60px var(--container-padding);
    }
    .flavors-header {
        margin-bottom: 50px;
    }
    .flavors-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .flavors-title-wrapper {
        gap: 12px;
    }
    .fork-icon {
        display: none;
    }
    .flavor-title {
        font-size: 20px;
    }
    .flavor-description {
        font-size: 13px;
    }
    .flavor-card-visual.featured-aspect {
        aspect-ratio: 1/1;
    }
}
/* ===================================================
   SEÇÃO 7: INTEGRAÇÃO E EXPERIÊNCIA
=================================================== */
.event-experience-section {
    background: radial-gradient(circle at top right, #B44622, #A83A17 70%); /* Gradiente para profundidade */
    padding: 120px var(--container-padding);
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    color: #FFFFFF;
    position: relative;
}

.event-experience-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.event-visual-box {
    width: 100%;
    height: clamp(350px, 45vw, 600px);
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borda sutil */
    position: relative;
}

.event-visual-box::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.2); /* Vinheta interna na imagem */
    pointer-events: none;
}

.event-visual-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .event-content-grid {
        grid-template-columns: 5fr 7fr;
        gap: 100px;
    }
}

.event-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.event-title {
    font-family: var(--font-inter);
    font-size: clamp(26px, 3.8vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-align: left;
}

.event-title span {
    color: #F8B90A;
    text-shadow: 0 0 20px rgba(248, 185, 10, 0.3);
}

.event-description {
    font-family: var(--font-inter);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    text-align: left;
    max-width: 420px;
}

@media (max-width: 768px) {
    .event-title {
        font-size: 24px;
        text-align: center;
    }
    .event-left-col {
        align-items: center;
        text-align: center;
    }
    .event-description {
        text-align: center;
        max-width: 100%;
        font-size: 14px;
    }
    .event-visual-box {
        height: 220px;
        border-radius: 20px;
        margin-bottom: 40px;
    }
    .event-right-col p,
    .event-right-col .highlight-text {
        text-align: center;
        font-size: 14px;
    }
}

.event-right-col {
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.1); /* Separador elegante */
    padding-left: 60px;
}

@media (max-width: 1024px) {
    .event-right-col {
        border-left: none;
        padding-left: 0;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.event-right-col p {
    margin: 0;
}

.event-right-col .highlight-text {
    font-size: clamp(18px, 1.5vw, 20px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 8px;
}

.event-cta {
    background: #F8B90A; /* Cor exata do print */
    color: #111111;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 32px;
    border-radius: 99px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(248, 185, 10, 0.15);
}

.event-cta b {
    color: #C2410C;
    font-weight: 800;
}

.event-cta:hover {
    transform: translateY(-3px);
    background: var(--color-yellow-light);
    box-shadow: 0 15px 30px rgba(248, 185, 10, 0.3);
}

.cta-icon-circle {
    background: #FFFFFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.cta-icon-circle i {
    font-size: 14px;
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .event-experience-section {
        padding: 60px 20px;
    }
    .event-visual-box {
        margin-bottom: 40px;
    }
    .event-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================================
   SEÇÃO 8: DEPOIMENTOS (ESTILO RECOL)
=================================================== */
.testimonials-section {
    background-color: #FAFAFA;
    padding: 120px var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(248, 185, 10, 0.03) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(248, 185, 10, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.testimonials-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: center;
}

.testimonials-header {
    margin-bottom: 60px;
}



.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    width: 100%;
    z-index: 2;
}

.testimonial-card-new {
    background: #FFFFFF;
    padding: 48px 40px;
    border-radius: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 420px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: none;
}



.quote-icon {
    margin-bottom: 0;
    opacity: 0.8;
}

.testimonial-text-new {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    font-weight: 400;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    align-items: center;
}

.testimonial-rating svg {
    filter: drop-shadow(0 2px 4px rgba(248, 185, 10, 0.2));
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author {
    font-weight: 700;
    color: #111111;
    font-size: 16px;
}

.testimonial-role {
    font-size: 14px;
    color: #666666;
}

/* Stats Bar Modernizada */
.testimonials-stats-bar {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 50px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
}

.testimonials-stats-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(248, 185, 10, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 900;
    color: #F8B90A;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    text-transform: lowercase;
}

.floating-pizza-testimonials {
    animation: float-slow 10s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        padding: 20px 24px 40px 24px !important;
        gap: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -24px 20px -24px !important;
        touch-action: pan-x; /* Garante que o toque horizontal funcione */
        position: relative;
        z-index: 10;
        width: calc(100% + 48px) !important; /* Compensa as margens negativas */
    }

    .testimonial-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card-new {
        flex: 0 0 85vw !important;
        width: 85vw !important;
        scroll-snap-align: center;
        min-height: auto;
        padding: 32px 24px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        display: flex !important;
        flex-direction: column !important;
    }

    .testimonials-header { margin-bottom: 40px; }
    .testimonials-main-title {
        font-size: 32px;
    }
    .testimonials-stats-bar {
        display: none !important;
    }
}

/* ---------------------------------------------------------
   CARRINHO DE BRIGADEIRO (REVISÃO PREMIUM)
--------------------------------------------------------- */
.elementor-section-brigadeiro {
    background-color: #000000;
    background-image: radial-gradient(circle at 70% 30%, rgba(242, 41, 91, 0.08) 0%, transparent 50%);
    padding: 120px var(--container-padding);
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.elementor-section-brigadeiro .elementor-container {
    width: 100%;
    max-width: var(--container-max-width);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 100px;
}

.elementor-column-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.elementor-section-brigadeiro .elementor-heading {
    color: #FFFFFF;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 0;
}

.elementor-section-brigadeiro .elementor-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 540px;
}

.elementor-icon-boxes-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.elementor-icon-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.elementor-icon-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(242, 41, 91, 0.3);
    transform: translateX(10px);
}

.icon-box-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 41, 91, 0.1);
    border-radius: 14px;
}

.icon-box-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #f2295b;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-box-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.icon-box-title {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.icon-box-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.elementor-column-image {
    flex: 1;
    position: relative;
    will-change: transform;
}

.elementor-image-widget {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Botão Rosa Específico */
.elementor-section-brigadeiro .hero-cta {
    background: linear-gradient(90deg, #f2295b 0%, #ff5c8a 100%);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 15px 30px rgba(242, 41, 91, 0.3) !important;
}

.elementor-section-brigadeiro .hero-cta:hover {
    background: linear-gradient(90deg, #ff5c8a 0%, #f2295b 100%);
    box-shadow: 0px 20px 40px rgba(242, 41, 91, 0.5) !important;
    transform: translateY(-3px) scale(1.02);
}

@media (max-width: 1024px) {
    .elementor-section-brigadeiro {
        padding: 80px 0;
    }
    .elementor-section-brigadeiro .elementor-container {
        flex-direction: column-reverse; /* Imagem no topo no mobile */
        align-items: center; /* Centralizado para melhor visual mobile */
        gap: 40px;
    }
    .elementor-column-image {
        width: 100%;
    }
    .elementor-section-brigadeiro .elementor-heading,
    .elementor-section-brigadeiro .elementor-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .elementor-section-brigadeiro {
        padding: 60px var(--container-padding);
    }
    .elementor-icon-box {
        padding: 20px;
    }
    .icon-box-icon {
        width: 44px;
        height: 44px;
    }
}

/* ===================================================
   SEÇÃO: QUALIDADE (TRAJETÓRIA)
   =================================================== */
.quality-timeline-section {
    width: 100%;
    padding: 100px 0;
    background: #FFFFFF;
    font-family: 'Sora', sans-serif;
}

.quality-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quality-header {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
}

.quality-tag {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #767676;
    margin-bottom: 8px;
    display: block;
}

.quality-title {
    font-weight: 600;
    font-size: 56px;
    color: var(--color-black);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.quality-title span {
    color: var(--color-terracotta);
}

.timeline-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 40px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    will-change: transform;
}

.timeline-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.timeline-inner {
    min-width: 900px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.circles-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.timeline-bg-line {
    position: absolute;
    top: 50%;
    height: 2px;
    background: #D6D6D6;
    transform: translateY(-50%);
    z-index: -1;
}

.timeline-fill-line {
    position: absolute;
    top: 50%;
    height: 3px;
    background: var(--color-yellow);
    transform: translateY(-50%);
    z-index: -1;
    width: 0;
    transform-origin: left;
}

.timeline-circle-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.timeline-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #D6D6D6;
    flex-shrink: 0;
    transition: all 0.5s ease;
    border: 4px solid #FFFFFF;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.timeline-circle.active-step {
    background: var(--color-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: var(--color-yellow);
}

.circle-inner-white {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-inner-orange {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-yellow);
}

.quality-cards-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.quality-card {
    background: #F9F9F9;
    border-radius: 24px;
    padding: 16px;
    padding-bottom: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.quality-card:hover {
    transform: translateY(-10px);
    background: #FFFFFF;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.quality-card figure {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
}

.quality-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.quality-card:hover img {
    transform: scale(1.1);
}

.quality-card-content {
    padding: 0 15px;
    text-align: center;
}

.quality-card-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    font-weight: 400;
}

.quality-card-text strong {
    color: var(--color-terracotta);
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}

/* Responsividade de Qualidade */
@media (max-width: 768px) {
    .quality-timeline-section {
        padding: 60px 0;
    }
    .quality-title {
        font-size: 38px;
    }
    .quality-card figure {
        height: 180px;
    }
}

/* ===================================================
   FOOTER (INSTITUCIONAL)
   =================================================== */
.main-footer {
    background-color: #1a1a1a;
    padding: 80px 0 30px;
    color: var(--color-white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col-about .footer-logo {
    width: 140px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-col-about .about-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: var(--color-white);
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    transform: translateY(-5px);
}

.footer-col-title {
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--color-yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-yellow);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-yellow);
    flex-shrink: 0;
}

.contact-item span {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-credits {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-credits a {
    color: var(--color-yellow);
    text-decoration: none;
    font-weight: 500;
}

/* Responsividade do Rodapé */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 30px;
        text-align: center;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-col-about {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .social-links {
        justify-content: center;
    }
    .contact-item {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* Performance: GPU layers para animações, sem content-visibility (causa jank mobile) */
@media (min-width: 769px) {
    .scroll-container {
        will-change: transform;
    }
}

/* ===================================================
   MODAL DO CARDÁPIO (MENU MODAL)
   =================================================== */
/* Mobile Navigation Modal */
.nav-mobile-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 10000;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.nav-mobile-modal.active {
    right: 0;
}

.nav-mobile-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nav-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.nav-mobile-close {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-grow: 1;
}

.mobile-link {
    font-family: 'Neue Plak Text Black', sans-serif;
    font-size: 32px;
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--color-yellow);
}

.nav-mobile-footer {
    margin-top: auto;
    padding-bottom: 20px;
}

.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 20px;
}

.menu-modal.active {
    opacity: 1;
    pointer-events: all;
}

/* Bloqueio de scroll via classe no HTML */
html.modal-open,
html.modal-open body {
    overflow: hidden !important;
}

.menu-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.menu-modal-container {
    position: relative;
    width: 95%;
    max-width: 1000px;
    height: 85vh;
    background: #FFF;
    border-radius: 32px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 10;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-modal.active .menu-modal-container {
    transform: scale(1);
}

/* Modal Header */
.menu-header {
    padding: 30px 40px;
    background: #FFFFFF;
    border-bottom: 1px solid #EEEEEE;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.menu-header-content h2 {
    font-family: 'Neue Plak Text Black', 'Sora', sans-serif;
    font-size: 32px;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.menu-header-content p {
    font-family: 'Inter', sans-serif;
    color: #666;
    margin: 8px 0 0 0;
    font-size: 15px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F5F5F5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    z-index: 10;
}

.close-menu:hover {
    background: #FFBD17;
    transform: rotate(90deg);
}

/* Modal Body */
.menu-body {
    flex: 1;
    overflow-y: auto !important;
    overflow-x: hidden !important; /* Remove horizontal scroll */
    padding: 20px 0; /* Padding lateral movido para as seções */
    scroll-behavior: smooth;
    background: #FAFAFA;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.menu-section {
    padding: 0 40px;
    margin-bottom: 50px;
}

/* Hide Scrollbar for Menu Body */
.menu-body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.menu-body::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* Menu Tabs/Sections */
.menu-section {
    margin-bottom: 50px;
}

.menu-section:last-child {
    margin-bottom: 0;
}

.menu-category-title {
    font-family: 'Neue Plak Text Black', 'Sora', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-category-title .badge {
    background: #FFBD17;
    color: #000;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
}

.menu-section.premium-section {
    background: #111;
    margin: 0; /* Removido margens negativas para evitar overflow */
    padding: 60px 40px;
    color: #FFF;
}

.menu-section.premium-section .menu-category-title {
    color: #FFBD17;
}

.menu-section.premium-section .menu-item {
    background: #1A1A1A;
    border-color: #333;
}

.menu-section.premium-section .menu-item span {
    color: #FFF;
}

.menu-category-title::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, #FFBD17, transparent);
    opacity: 0.3;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.menu-item {
    background: #FFFFFF;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid #EEEEEE;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-item:hover {
    border-color: #FFBD17;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 189, 23, 0.15);
}

.menu-item-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #F5F5F5;
    overflow: hidden;
    flex-shrink: 0;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
}

/* Modal Footer (Redesigned) */
.menu-footer-new {
    background: #111111;
    padding: 0;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #222;
}

.menu-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.pricing-card {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    position: relative;
    background: #1A1A1A;
}

.pricing-card-premium {
    background: linear-gradient(135deg, #2A1D00 0%, #1A1400 100%);
}

.pricing-card-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 189, 23, 0.2);
    pointer-events: none;
}

.pricing-card-badge {
    font-family: 'Sora', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.pricing-card-premium .pricing-card-badge {
    color: #FFBD17;
}

.pricing-card-price {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-card-premium .pricing-card-price {
    color: #FFBD17;
}

.pricing-cents {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.8;
}

.pricing-card-unit {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.pricing-card-min {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
    font-weight: 500;
}

.menu-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: #0D0D0D;
    gap: 16px;
}

.kids-rule {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    line-height: 1.3;
}

.kids-rule i {
    color: #FFBD17;
}

.kids-rule strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.menu-footer-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #FFC000 0%, #FFD939 100%);
    color: #000;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.menu-footer-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 20px rgba(255, 189, 23, 0.3);
}

/* Responsividade */
@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-modal {
        padding: 0;
    }
    
    .menu-modal-container {
        height: 100vh;
        border-radius: 0;
    }
    
    .menu-header {
        padding: 20px;
    }
    
    .menu-body {
        padding: 20px 0;
        overflow-x: hidden !important;
    }
    
    .menu-section {
        padding: 0 20px;
    }
    
    .menu-footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 14px 20px;
        gap: 12px;
    }

    .kids-rule {
        justify-content: center;
    }

    .menu-footer-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .menu-section.premium-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-header-content h2 {
        font-size: 24px;
    }

    .pricing-card-price {
        font-size: 24px;
    }

    .pricing-cents {
        font-size: 15px;
    }
}

/* Lead Modal Detailed Styles */
.lead-form-body {
    padding: 40px !important;
    background: #FFFFFF !important;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.input-group {
    background: #FAFAFA;
    border: 1px solid #EEEEEE;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 55px;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: #FFBD17;
    background: #FFFFFF;
    box-shadow: 0 5px 15px rgba(255, 189, 23, 0.1);
}

.input-group i {
    color: #FFBD17;
    width: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.input-group input, 
.input-group select {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #111;
    width: 100%;
}

.input-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.lead-form-submit {
    display: flex;
    justify-content: center;
}

.lead-form-submit .hero-cta {
    width: 100%;
    border: none;
    cursor: pointer;
}

.lead-footer {
    background: #FAFAFA !important;
    border-top: 1px solid #EEEEEE !important;
    padding: 25px 40px !important;
}

.lead-footer p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 480px) {
    .lead-form-body {
        padding: 25px 20px !important;
    }
    .lead-footer {
        padding: 20px !important;
    }
}

/* Content Visibility Reset (Animations Removed) */
.esquerda, .direita, .baixo, .cima {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    visibility: visible !important;
}

/* Perspective Entry Animation */
.video {
    transform-origin: bottom;
    transform: perspective(1000px) rotateX(20deg) !important;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform;
}

.video-ativoo {
    transform-origin: bottom;
    transform: perspective(1000px) rotateX(0deg) !important;
}

/* Floating Navbar Styles */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 70px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    z-index: 9999;
    display: flex;
    align-items: center;
    padding: 0 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-nav.scrolled {
    top: 10px;
    width: 95%;
    background: rgba(10, 10, 10, 0.85);
    border-color: rgba(255, 255, 255, 0.05);
    height: 60px;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-white);
    font-family: 'Neue Plak Text Black', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.nav-logo img {
    height: 35px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--color-yellow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-hero-cta {
    padding: 12px 24px !important;
    font-size: 13px !important;
    margin-top: 0 !important;
    height: 45px !important;
    min-width: 140px;
}

.nav-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
}

@media (max-width: 1024px) {
    .nav-menu, .nav-hero-cta {
        display: none;
    }
    .nav-mobile-toggle {
        display: flex;
    }
    .floating-nav {
        padding: 0 20px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .nav-logo span {
        display: none;
    }
}

/* Mobile Navigation Modal */
.nav-mobile-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 10000;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.nav-mobile-modal.active {
    right: 0;
}

.nav-mobile-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nav-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.nav-mobile-close {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-grow: 1;
}

.mobile-link {
    font-family: 'Neue Plak Text Black', sans-serif;
    font-size: 32px;
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--color-yellow);
}

.nav-mobile-footer {
    margin-top: auto;
    padding-bottom: 20px;
}

/* ==========================================================
   MOBILE SCROLL PERFORMANCE OVERRIDES
   ========================================================== */
@media (max-width: 768px) {
    /* Desativa animações CSS pesadas das colunas */
    .up .scroll-container,
    .down .scroll-container {
        animation: none !important;
    }

    /* Desativa transforms em hover que causam repaints */
    .menu-item:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    /* Remove transição de efeito hover desnecessária no mobile */
    .menu-item {
        transition: none !important;
    }

    /* Otimiza o scroll nativo do modal */
    .menu-body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
    }

    /* Remove backdrop-filter da navbar no mobile */
    .floating-nav {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(10, 10, 10, 0.92) !important;
    }

    /* Remove backdrop-filter do overlay do modal no mobile */
    .menu-modal-overlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(0, 0, 0, 0.7) !important;
    }

    /* Remove floating animation no mobile */
    .pizza-float-img {
        animation: none !important;
    }

    /* Elimina compositing desnecessário */
    .video {
        will-change: auto !important;
    }
}
