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

body {
    font-family: var(--fonte-corpo);
    background-color: var(--cor-creme);
    color: var(--cor-texto);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Classes Utilitárias */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--cor-vermelho);
    color: white;
    border: 2px solid var(--cor-vermelho);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--cor-vermelho);
}

/*3. HERO SLIDER (SEÇÃO 1) */
.hero {
    position: relative;
    height: 520px;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Background com Animação Ken Burns */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0s linear 1.5s;
}

.slide.active .slide-bg {
    transform: scale(1.05);
    transition: transform 12s linear 0s;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease-out 0.5s;
}

.slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-tag {
    display: inline-block;
    background-color: var(--cor-dourado);
    color: white;
    padding: 5px 15px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-family: "Chella-Semi-Bold";
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.hero p {
    font-size: 1.4rem;
    font-weight: 300;
    color: #f0f0f0;
    max-width: 700px;
    margin: 0 auto;
}

/* Dots de Navegação */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--cor-vermelho);
    transform: scale(1.1);
}

.products-showcase {
    width: 100%;
    position: relative;
    padding: 35px;
    background: radial-gradient(ellipse at top, #ffffff 0%, #f2f2f2 40%, #b9c2c7 100%) !important;
    text-align: center;
    overflow: hidden;
}

.title-products h1 {
    font-family: "Lufga";
    color: var(--cor-vermelho);
    font-size: 2.0rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.swiper-container-wrapper {
    position: relative;
    width: 100%;
    perspective: 1200px;
}

.product-slider {
    width: 100%;
    padding: 40px 0 100px 0;
    overflow: visible;
}

/* --- SLIDES E ESTRUTURA --- */
.swiper-container-wrapper {
    position: static;
    width: 100%;
    max-width: 1000px !important;
    margin: 0 auto;
}

.swiper-slide {
    width: auto;
    height: auto;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-box-reflect: below 0px linear-gradient(to bottom, transparent, transparent 70%, rgba(255, 255, 255, 0.4));
    user-select: none;
    -webkit-user-drag: none;
    cursor: pointer;
}

.swiper-slide-active {
    z-index: 20;
}

.swiper-slide-active img {
    opacity: 1;
    transform: scale(1.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-box-reflect: below 0px linear-gradient(to bottom, transparent, transparent 100%, rgba(255, 255, 255, 0.4));

}

.product-label {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 20px;
    min-height: 30px;
    font-family: "Chella-Semi-Bold";
    color: #887647;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 1px;
    min-height: 40px;
    display: block;
    width: 100%;
}

/* 3. Posiciona as setas nos cantos da tela */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50% !important;
    z-index: 100;
    background-color: #8c1d18 !important;
    color: #ffffff !important;
    border-radius: 50%;
    color: #C69C3A;
    width: 35px !important;
    height: 35px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    border: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 15px !important;
    font-weight: 900;
}

.swiper-button-prev {
    left: 30px !important;
    right: auto !important;
}

.swiper-button-next {
    right: 30px !important;
    left: auto !important;
}

/* BOTÃO FINAL */
.btn-mais-produtos {
    background-color: #8c1d18;
    color: var(--cor-creme);
    padding: 16px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.2s;
}

.btn-mais-produtos:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(198, 156, 58, 0.4);
}


.btn-ver-mais:hover {
    background-color: #C69C3A;
    /* Vira Dourado no hover */
    color: white;
    transform: translateY(-3px);
}


/* 5. B2B / FOOD SERVICE (SEÇÃO 3) */
.mp-section {
    background: url('/img/banners/marcapropria.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 580px;
    text-align: center;
    color: white;
    margin-top: 0;
}

.container-mp {
    margin: 0 auto;
}

.mp-section h2 {
    font-family: var(--fonte-titulo);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--cor-creme);
    line-height: 1.1;
}

.btn-mp {
    display: inline-block;
    background-color: var(--cor-dourado);
    color: var(--cor-vermelho);
    padding: 18px 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-mp:hover {
    transform: translateY(-5px);
    background-color: var(--cor-creme);
    color: var(--cor-dourado);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* --- SEÇÃO DICAS & IDEIAS --- */
.tips-section {
    background-color: var(--cor-vermelho);
    background: radial-gradient(circle, #d73027 0%, #8c1d18 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.tips-section .container {
    max-width: 100% !important;
}

.tips-header h2 {
    font-family: var(--fonte-titulo);
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1cm;
}

.tips-curve {
    display: block;
    transform: rotate(0deg);
    margin: -35px auto 15px 670px;
    padding-top: 35px;
    width: 120px;
    height: auto;
}

/* GRID DAS IMAGENS */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.tip-item {
    display: block;
    width: 100%;
    height: 350px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

/* Efeito Hover nas imagens */
.tip-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* RODAPÉ DA SEÇÃO */
.tips-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 35px;
    padding-right: 200px
}

.tips-footer p {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
}

/* Botão Branco "VER MAIS" */
.btn-ver-mais {
    background-color: white;
    color: #8c1d18;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- FOOD SERVICE --- */
.food-service-section {
    background-color: var(--cor-azul);
    /* background-image: url('/img/banners/foodservice-bg.jpg'); */
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 80px 0;
    color: white;
    text-align: center;
    border-top: 4px solid var(--cor-dourado);
}

.food-service-content h2 {
    font-family: var(--fonte-titulo);
    font-size: 2.5rem;
    color: var(--cor-dourado);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.food-service-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
    line-height: 1.8;
}

.btn-food {
    display: inline-block;
    border: 2px solid var(--cor-dourado);
    color: var(--cor-dourado);
    padding: 15px 40px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-food:hover {
    background-color: var(--cor-dourado);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(198, 156, 58, 0.4);
}

/* ---SEÇÃO PARCEIROS --- */
.partners-section {
    padding: 20px 0;
    text-align: center;
    background-color: white;
    overflow: hidden;
}

.partners-section h2 {
    font-family: var(--fonte-titulo);
    font-size: 2rem;
    color: var(--cor-vermelho);
    margin-bottom: 50px;
    opacity: 0.9;
}

.marquee {
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
    position: relative;
}

.marquee::before,
.marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

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

/* Agrupamento dos logos */
.logo-slide {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Estilo do Container da Logo */
.logo-item {
    width: 180px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-item img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    object-fit: cover;
    display: block;
}

/*A Animação Infinita*/

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

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

}

/* --- SEÇÃO SOCIAL --- */
.home-social-cta {
    text-align: center;
    padding-bottom: 30px;
    background-color: white;
}

.home-social-cta h3 {
    font-family: var(--fonte-titulo);
    font-weight: 700;
    color: var(--cor-vermelho);
    font-size: 1.4rem;
    margin-bottom: 25px;
}

/* Container dos ícones exclusivo */
.home-social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.home-social-icons a {
    text-decoration: none;
    color: #8c1d18;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-social-icons i {
    font-size: 48px;
    font-weight: bold;
}

.home-social-icons a:hover {
    color: var(--cor-dourado);
    transform: translateY(-5px);
}

@media (max-width: 900px) {

    /* --- 1. HERO (Banner Principal) --- */
    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .slide-bg {
        background-position: center center;
    }

    .hero-content {
        transform: translateY(0);
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0;
        line-height: 1.5;
    }

    .slider-dots {
        bottom: 20px;
    }

    /* --- 2. SLIDER DE PRODUTOS --- */
    .products-showcase {
        padding: 40px 15px 60px 15px;
    }

    .title-products h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        position: relative;
        z-index: 5;
    }

    .product-slider {
        padding: 10px 0 20px 0;
        overflow: visible;
    }

    .swiper-slide {
        display: flex;
        align-items: flex-end;
    }

    .swiper-slide img {
        width: 100%;
        max-width: 160px;
        margin: 0 auto;
    }

    .swiper-slide-active img {
        transform: scale(1.1) !important;
    }

    .product-label {
        font-size: 0.9rem;
        margin-top: 15px;
        margin-bottom: 25px;
        padding: 0 20px;
        line-height: 1.4;
        color: var(--cor-dourado);
        font-weight: 900;
        text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
    }

    .btn-mais-produtos {
        margin-top: 10px;
        width: 100%;
        max-width: 280px;
        padding: 15px 0;
        font-size: 1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    /* --- 3. SEÇÃO B2B / MARCA PRÓPRIA --- */
    .mp-section {
        height: auto;
        min-height: 450px;
        padding: 60px 20px;
        background-attachment: scroll;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mp-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .btn-mp {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
    }

    /* --- 4. DICAS & IDEIAS --- */
    .tips-section {
        padding: 40px 0;
    }

    .tips-header h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    /* Ajuste da Curva Dourada */
    .tips-curve {
        width: 80px;
        margin: -20px auto 30px auto;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .tip-item:nth-child(n+4) {
        display: none;
    }

    .tip-item {
        height: 250px;
    }

    .tips-footer {
        flex-direction: column;
        justify-content: center;
        padding-right: 0;
        gap: 20px;
        text-align: center;
        margin-top: 20px;
    }

    .tips-footer p {
        font-size: 1rem;
        padding: 0 20px;
    }

    /* --- 5. FOOD SERVICE --- */
    .food-service-section {
        padding: 50px 20px;
    }

    .food-service-content h2 {
        font-size: 1.8rem;
    }

    .food-service-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .btn-food {
        width: 100%;
        max-width: 300px;
    }

    .partners-section {
        padding: 40px 0;
    }

    .partners-section h2 {
        font-size: 1.5rem;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .logo-item {
        width: 140px;
        height: 100px;
    }

    .home-social-cta h3 {
        font-size: 1rem;
        padding: 0 20px;
    }

    .home-social-icons {
        gap: 25px;
        flex-wrap: wrap;
    }

    .home-social-icons i {
        font-size: 36px;
    }
    
    @media (max-width: 900px) {
    /* Suas outras regras de mobile... */

    /* Força a troca de imagem no celular sem precisar de classes no HTML */
    .slide:nth-child(1) .slide-bg { 
        background-image: url('/img/banners/zeroLac-mobile.png') !important; 
    }
    
    .slide:nth-child(2) .slide-bg { 
        background-image: url('/img/produtos/whey-mobile.png') !important; 
    }
    
    .slide:nth-child(3) .slide-bg { 
        background-image: url('/img/banners/outdoor-mobile.webp') !important; 
    }
    }
}