/* ================================================ */
/* === 1. CONFIGURAÇÕES GLOBAIS E BASE        === */
/* ================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e2a3a;
  background-color: #f8f9fa;
  line-height: 1.6;
}

/* Animações */
.reveal { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}
.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}


/* ================================================ */
/* === 2. COMPONENTES REUTILIZÁVEIS           === */
/* ================================================ */

/* --- NAVEGAÇÃO (HEADER) --- */
header {
  background-color: #005cbf;
  padding: 10px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.sticky {
    padding: 5px 40px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-area img {
  height: 67px;
  transition: height 0.3s ease;
}

header.sticky .logo-area img {
    height: 45px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d4eaff;
}

/* --- TÍTULOS E BOTÕES GERAIS --- */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.4rem; color: #003366; font-weight: 800; }
.btn-hero { display: inline-block; background: #0074d9; color: #ffffff; padding: 14px 28px; border-radius: 8px; font-weight: bold; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,116,217,0.3); }
.btn-hero:hover { background: #005599; transform: translateY(-3px); }
.btn-card {
  display: block;
  background-color: #0074d9;
  color: #ffffff;
  text-decoration: none;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.btn-card:hover {
  background-color: #005599;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- BOTÃO VOLTAR AO TOPO --- */
.back-to-top-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #f0f0f0;
  color: #1e2a3a;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 15px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  cursor: pointer;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.back-to-top-btn:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.back-to-top-btn img {
    width: 14px;  
    height: 14px; 
    margin-left: 8px;
    object-fit: contain;
}


/* ================================================ */
/* === 3. ESTILOS DE PÁGINAS ESPECÍFICAS      === */
/* ================================================ */

/* --- PÁGINA INICIAL --- */
.hero-section { display: flex; align-items: center; justify-content: space-between; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 80px 20px; }
.hero-content { flex: 1; max-width: 550px; }
.hero-content h2 { font-size: 2.8rem; font-weight: 800; color: #003366; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 30px; }
.hero-img { flex: 1; max-width: 600px; }
.hero-img img { width: 100%; border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }

.valores { padding: 80px 20px; background-color: #ffffff; }
.valores-container { max-width: 1200px; margin: auto; display: flex; gap: 30px; justify-content: center; }
.valor-card { background: #ffffff; padding: 40px 30px; border-radius: 16px; flex: 1; text-align: center; box-shadow: 0 8px 30px rgba(0, 43, 85, 0.08); transition: all 0.3s ease-in-out; }
.valor-card:hover { transform: translateY(-10px); box-shadow: 0 12px 40px rgba(0, 43, 85, 0.12); }
.icon-background { background-color: #e6f2ff; width: 80px; height: 80px; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 25px; }
.icon-background img { width: 50px; height: auto; }

.video { padding: 80px 20px; }
.video-container { max-width: 800px; margin: auto; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); aspect-ratio: 16 / 9; }
.video-container iframe { width: 100%; height: 100%; border: none; }

.sobre { padding: 80px 20px; background-color: #ffffff; }
.content-box { display: flex; align-items: center; gap: 60px; max-width: 1200px; margin: 0 auto; }
.sobre-text { flex: 1; max-width: 550px; }
.sobre-text h2 { font-size: 2.2rem; color: #003366; font-weight: 800; margin-bottom: 20px; }
.sobre-img { flex: 1; max-width: 600px; }
.sobre-img img { width: 100%; border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }

/* --- PÁGINA DE PRODUTOS E RECEITAS --- */
.marcas-section { padding: 50px 0; text-align: center; background-color: #ffffff; }
.marcas-container { overflow: hidden; position: relative; width: 100%; }
.marcas-container:hover .marcas-scroll { animation-play-state: paused; }
.marcas-scroll { display: flex; width: calc(200px * 20); animation: scrollAnimation 40s linear infinite; }
.marca-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px; /* Adiciona uma altura fixa para alinhar tudo */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; /* Adiciona um respiro interno */
}

.marca-item img {
    max-width: 100%;   /* Limita a largura da imagem ao container */
    max-height: 100%;  /* Limita a altura da imagem ao container */
    object-fit: contain; /* Garante que a imagem inteira apareça, sem cortar */
    transition: transform 0.3s ease-in-out;
}
.marca-item:hover img { transform: scale(1.1); }
@keyframes scrollAnimation { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-200px * 10)); } }

.receitas-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; text-align: center; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.card { background-color: #ffffff; border-radius: 16px; box-shadow: 0 4px 15px rgba(0, 43, 85, 0.05), 0 15px 40px rgba(0, 43, 85, 0.1); overflow: hidden; text-align: left; display: flex; flex-direction: column; transition: all 0.3s ease-in-out; }
.card:hover { transform: translateY(-12px); box-shadow: 0 6px 20px rgba(0, 43, 85, 0.08), 0 20px 50px rgba(0, 43, 85, 0.15); }
.card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.card-content h3 { font-size: 1.4rem; color: #003366; font-weight: 700; margin-bottom: 10px; }
.card-content p { font-size: 1rem; color: #495057; margin-bottom: 20px; flex-grow: 1; }
.section-button-container { text-align: center; margin-top: 50px; }

.solucoes-hero-section { display: flex; align-items: center; justify-content: space-between; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 80px 20px; background-color: #ffffff; }
.solucoes-content { flex: 1; max-width: 550px; }
.solucoes-content h2 { font-size: 2.8rem; font-weight: 800; color: #003366; margin-bottom: 20px; }
.solucoes-content p { font-size: 1.1rem; margin-bottom: 30px; }
.solucoes-img { flex: 1; max-width: 600px; }
.solucoes-img img { width: 100%; }


/* --- PÁGINAS DE FORMULÁRIO (CONTATO / TRABALHE CONOSCO) --- */
.page-section {
  padding: 60px 20px; /* menos espaço em volta */
  background-color: #eef5ff;
  min-height: 60vh; /* um pouco menor */
}

.form-container {
  max-width: 600px; /* largura menor */
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px; /* menos espaço interno */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 43, 85, 0.08);
  text-align: center;
}

.contact-form {
  max-width: 550px; /* ajusta para combinar */
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 15px; /* menor espaço entre os campos */
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #003366;
  font-size: 0.95rem; /* fonte um pouco menor */
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px; /* menor altura dos campos */
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0074d9;
  box-shadow: 0 0 0 3px rgba(0, 116, 217, 0.15);
}

input[type="file"]::file-selector-button {
  cursor: pointer;
  background-color: #e9ecef;
  color: #495057;
  border: 1px solid #ccc;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
  background-color: #dee2e6;
  border-color: #adb5bd;
}

.file-name-style {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #555;
  font-style: italic;
  font-weight: 500;
}


/* --- PÁGINA LINHA PROFESSIONAL --- */
.hero-professional-text-below { padding: 50px 20px 60px 20px; text-align: center; }
.hero-content-pro-new { max-width: 900px; margin: 0 auto; }
.hero-content-pro-new h1 { font-size: 3.8rem; font-weight: 800; margin-bottom: 25px; }
.hero-content-pro-new p { font-size: 1.25rem; line-height: 1.7; max-width: 700px; margin: 0 auto 35px auto; color: #495057; }
.hero-professional-full-width { width: 100%; height: 70vh; position: relative; margin-top: 20px; }
.hero-professional-full-width {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto 0 auto;
    aspect-ratio: 1200 / 400;
    position: relative;
    overflow: hidden;
    /* border-radius e box-shadow removidos */
}

.hero-professional-full-width .swiper-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-feature-centered { padding: 80px 20px; }
.feature-container-centered { max-width: 800px; margin: 0 auto; text-align: center; }
.feature-container-centered .feature-logo { max-height: 350px; margin-bottom: 30px; }
.feature-container-centered h2 { font-size: 2.8rem; font-weight: 800; color: #003366; margin-bottom: 20px; line-height: 1.2; }
.feature-container-centered p { font-size: 1.2rem; color: #495057; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.moca-products-carousel { width: 100%; height: 250px; margin-top: 40px; margin-bottom: 40px; }
.moca-products-carousel .product-slide { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 15px; text-align: center; border-radius: 12px; background-color: #f9f9f9; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.moca-products-carousel .product-slide:hover { transform: translateY(-8px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.moca-products-carousel .product-slide img { max-width: 120px; max-height: 150px; object-fit: contain; margin-bottom: 15px; }
.moca-products-carousel .product-slide .product-title { font-size: 1.1rem; font-weight: 600; color: #003366; }
.moca-pagination.swiper-pagination-bullets { bottom: 10px !important; }
.moca-pagination .swiper-pagination-bullet { background: #005cbf; opacity: 0.5; }
.moca-pagination .swiper-pagination-bullet-active { background: #005cbf; opacity: 1; }
/* --- PÁGINA LINHA PROFESSIONAL --- */
/* ... (Seu código anterior para hero-professional, product-feature, moca-products-carousel) ... */


/* === SEÇÃO DE CARDS ANIMADOS (NOVOS AJUSTES) === */
.animated-cards-section {
    padding: 80px 20px;
    background-color: #f8f9fa; /* Fundo leve para a seção */
    text-align: center;
}

.animated-cards-section h2 {
    font-size: 2.8rem;
    color: #003366;
    font-weight: 800;
    margin-bottom: 50px;
}

.wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    height: 400px;
    display: flex;
    justify-content: center;
    max-width: 1200px; /* Limita a largura do container principal dos cards */
    width: 100%;
    gap: 20px; /* Espaçamento entre os cards */
    margin: 0 auto; /* Centraliza o container */
}

input[type="radio"] {
    display: none; /* Esconde os radios buttons */
}

.card.animated {
    width: 100px; /* Largura inicial dos cards não selecionados */
    border-radius: 1.5rem; /* Bordas um pouco menos arredondadas */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Alinha o conteúdo na parte de baixo */
    transition: all .6s cubic-bezier(.28,-0.03,0,.99); /* Transição suave */
    box-shadow: 0px 8px 25px rgba(0,0,0,0.2); /* Sombra mais suave */
    position: relative;
}

.card.animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%); /* Gradiente escuro na parte inferior */
    z-index: 1;
    transition: background 0.6s ease;
}

input:checked + .card.animated::before {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%); /* Gradiente mais forte ao selecionar */
}

.card.animated .row {
    color: white;
    display: flex;
    flex-direction: column; /* Conteúdo em coluna */
    align-items: flex-start; /* Alinha o texto à esquerda */
    padding: 25px; /* Mais padding para o texto */
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto; /* Altura automática */
}

.card.animated .description {
    width: 100%;
    opacity: 0; /* Esconde a descrição por padrão */
    transform: translateY(20px); /* Começa um pouco para baixo */
    transition: all .4s ease-out .2s; /* Transição da descrição */
}

.description h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    white-space: nowrap; /* Evita que o título quebre linha */
    overflow: hidden;
    text-overflow: ellipsis; /* Adiciona "..." se o título for muito longo */
}

.description p {
    font-size: 0.95rem; /* Tamanho menor para a descrição */
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    line-height: 1.4;
}

/* Estado SELECIONADO do card */
input:checked + .card.animated {
    width: 600px; /* Largura maior para o card selecionado */
    box-shadow: 0px 12px 35px rgba(0,0,0,0.3); /* Sombra mais proeminente */
}

input:checked + .card.animated .description {
    opacity: 1; /* Mostra a descrição */
    transform: translateY(0); /* Volta para a posição original */
}

/* Responsividade para Cards Animados */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Empilha os cards em telas menores */
        height: auto; /* Altura automática quando empilhados */
    }
    .card.animated {
        width: 100% !important; /* Ocupa a largura total */
        height: 250px; /* Altura fixa para mobile */
        margin-bottom: 20px; /* Espaçamento entre cards empilhados */
    }
    .card.animated .description {
        opacity: 1; /* Mantém a descrição visível no mobile para facilitar a leitura */
        transform: translateY(0);
    }
    .animated-cards-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}
.wrapper { width: 100%; display: flex; align-items: center; justify-content: center; }
.container { height: 400px; display: flex; justify-content: center; max-width: 1200px; width: 100%; gap: 20px; }
input[type="radio"] { display: none; }
.card.animated { width: 110px; border-radius: 2rem; background-size: cover; background-position: center; cursor: pointer; overflow: hidden; display: flex; align-items: flex-end; transition: .6s cubic-bezier(.28,-0.03,0,.99); box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8); position: relative; }
.card.animated::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.3); z-index: 1; transition: background 0.6s ease; }
input:checked + .card.animated::before { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 50%); }
.card.animated .row { color: white; display: flex; align-items: flex-end; padding: 20px; position: relative; z-index: 2; width: 100%; height: 100%; }
.card.animated .description { width: 100%; opacity: 0; transform: translateY(30px); transition: all .3s ease .2s; }
.description h4 { font-size: 1.6rem; margin-bottom: 8px; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); }
.description p { font-size: 1.1rem; color: #e0e0e0; text-shadow: 1px 1px 3px rgba(0,0,0,0.7); }
input:checked + .card.animated { width: 600px; }
input:checked + .card.animated .description { opacity: 1; transform: translateY(0); }
.cta-section { padding: 80px 20px; text-align: center; }
.cta-section h2 { font-size: 2.4rem; color: #003366; margin-bottom: 20px; }
.cta-section p { max-width: 600px; margin: 0 auto 30px; font-size: 1.1rem; }

/* =============================== */
/* === RESPONSIVIDADE            === */
/* =============================== */
@media (max-width: 900px) {
    .hero-section, .content-box, .solucoes-hero-section { flex-direction: column; text-align: center; }
    .content-box { flex-direction: column-reverse; }
    .valores-container { flex-direction: column; align-items: center; }
    .valor-card { max-width: 400px; width: 100%; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .product-feature-centered, .animated-cards-section, .cta-section { padding-top: 60px; padding-bottom: 60px; }
    .hero-professional-full-width { height: 45vh; }
    .hero-content-pro-new h1 { font-size: 1.6rem; }
    .btn-hero { padding: 10px 18px; font-size: 0.9rem; }
    .feature-container-centered h2 { font-size: 1.8rem; }
    .container { flex-direction: column; height: auto; }
    .card.animated { width: 100% !important; height: 250px; }
}

/* ================================================ */
/* === 6. ESTILOS DO RODAPÉ (VERSÃO COMPACTA) === */
/* ================================================ */
/* ================================================ */
/* === 6. RODAPÉ - VERSÃO FINAL E COMPACTA === */
/* ================================================ */

/* ================================================ */
/* === 6. RODAPÉ - VERSÃO OTIMIZADA E COMPLETA === */
/* ================================================ */

/* --- ESTRUTURA GERAL DO RODAPÉ --- */
/* ================================================ */
/* === 6. RODAPÉ - VERSÃO SIMPLES E COMPACTA === */
/* ================================================ */

footer {
  background-color: #005cbf;
  color: #ffffff;
  padding: 0 25px; /* Remove padding vertical, só horizontal */
  margin-top: 50px;
  font-size: 0.9rem;
}

.footer-simple-container {
  max-width: 1200px; /* Um pouco mais de largura */
  margin: 0 auto;
}

/* --- LINHA SUPERIOR (PRINCIPAL) --- */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Permite quebrar em telas menores */
  gap: 20px;
  padding: 20px 0; /* Espaçamento interno vertical */
}

/* Lado esquerdo: Logo e Descrição */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-simple {
  max-width: 210px; /* Logo um pouco menor */
  height: auto;
}

/* Lado direito: Contatos e Social */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 25px; /* Espaço entre os ícones/links de contato */
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px; /* Espaço entre o ícone e o texto do link */
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffd700; /* Destaque dourado */
}

.footer-contact i {
  font-size: 1.2rem; /* Tamanho dos ícones */
}

/* --- LINHA INFERIOR (COPYRIGHT) --- */
.footer-bottom-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px 0;
  font-size: 0.8rem;
 
}

.footer-bottom-simple a {
  color: #ffffff;
  text-decoration: none;
}
.footer-bottom-simple a:hover {
  text-decoration: underline;
}

/* --- RESPONSIVIDADE PARA TELAS PEQUENAS --- */
@media (max-width: 820px) {
  .footer-main, .footer-bottom-simple {
    flex-direction: column; /* Empilha os elementos */
    justify-content: center;
    text-align: center;
  }
  
  .footer-main {
      padding-bottom: 15px;
  }
  
  .footer-contact {
      margin-top: 15px;
  }
}

/* --- RESPONSIVIDADE PARA CELULAR --- */
@media (max-width: 768px) {
  .footer-content,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    min-width: unset;
    width: 100%;
  }

  /* Centraliza o conteúdo de contato no mobile */
  .footer-contact-info p {
    justify-content: center;
  }
  
  .footer-social-icons {
    justify-content: center;
  }

  .footer-bottom {
      padding-top: 20px;
  }
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact-info p {
        justify-content: center;
    }
}

/* --- RESPONSIVIDADE DO RODAPÉ --- */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact-info p {
        justify-content: center;
    }
}

.hero-professional-full-width {
    width: 100%;
    max-width: 1200px;  /* Garante que a largura máxima seja 1200px */
    margin: 20px auto 0 auto; /* Centraliza o slideshow */
    aspect-ratio: 1200 / 400; /* FORÇA A PROPORÇÃO 1200x400 */
    position: relative;
    overflow: hidden; /* Garante que a imagem não vaze do container */
    border-radius: 16px; /* Adiciona bordas arredondadas */
    box-shadow: 0 8px 30px rgba(0, 43, 85, 0.15); /* Adiciona uma sombra suave */
}


@media (max-width: 768px) {
    /*
      Suas outras regras responsivas para 768px
      (como a do .nav-links) devem estar aqui.
      Adicione o novo código abaixo.
    */

    /* --- AJUSTE DO SLIDESHOW PROFESSIONAL PARA CELULAR --- */
    .hero-professional-full-width {
        aspect-ratio: 4 / 3; /* Proporção mais alta, ideal para celular */
        border-radius: 0;    /* Remove as bordas para um visual de ponta a ponta */
        box-shadow: none;      /* Remove a sombra para um look mais limpo no mobile */
        margin-top: 0;       /* Remove a margem superior para colar no header */
    }
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #ffffff !important; /* GARANTE QUE O TEXTO FIQUE BRANCO */
}


.marca-item {
    flex-shrink: 0;
    width: 200px;
    /* Remover height fixo */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Remover padding */
    padding: 10px 5px; /* Adiciona um pequeno padding horizontal e vertical */
}

.marca-item img {
    max-width: 120px; /* Volta ao tamanho original, ajustando a largura máxima */
    max-height: 250px; /* Adiciona uma altura máxima para controle */
    width: auto;      /* Permite que a largura se ajuste automaticamente */
    height: auto;     /* Permite que a altura se ajuste automaticamente */
    object-fit: scale-down; /* Novo! Reduz a imagem se for maior que o container, mas não expande */
    transition: transform 0.3s ease-in-out;
}

/* --- CONFIGURAÇÕES GLOBAIS E BASE --- */
body {
    font-family: 'Inter', sans-serif; /* Certifique-se que esta linha está aqui */
    color: #333; /* Cor de texto mais suave para o corpo */
    background-color: #f8f9fa;
    line-height: 1.6;
}

/* --- TÍTULOS E BOTÕES GERAIS --- */
.section-title h2 {
    font-size: 2.8rem; /* Um pouco maior para destaque */
    color: #003366;
    font-weight: 800;
    margin-bottom: 25px; /* Ajusta espaçamento */
}


/* --- PÁGINA DE PRODUTOS E RECEITAS --- */
/* Ajustes na seção de marcas (já feito, mas só para confirmar a ordem) */
.marcas-section {
    padding: 100px 20px;; /* Ajusta padding */
    text-align: center;
    background-color: #f0f3f7; /* Um leve cinza para dar um destaque */
}
.marcas-section h2 {
    font-size: 2.4rem; /* Ajusta o título da seção de marcas */
    color: #003366;
    margin-bottom: 40px;
}

/* Ajustes na seção de receitas */
.receitas-section {
    padding: 80px 20px; /* Ajusta padding */
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.receitas-section h2 {
    font-size: 2.8rem; /* Ajusta o título da seção de receitas */
    color: #003366;
    margin-bottom: 50px; /* Espaçamento maior antes dos cards */
}
/* --- Estilo final do rodapé com detalhes dourados --- */

/* Links dourados e sem azul */
.footer-contact-info a,
.footer-bottom a {
    color: #ffffff !important; /* amarelo dourado */
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-contact-info a:hover,
.footer-bottom a:hover {
    color: #ffffff; /* fica branco no hover */
    text-decoration: underline;
}

/* Ícones dourados */
.footer-contact-info .fas,
.footer-social-icons a {
    color: #ffffff !important;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-icons a:hover {
    color: #ffffff !important;
    transform: scale(1.1);
}

/* Remove a linha branca e mantém o rodapé limpo */
.footer-bottom {
    text-align: center;
    padding-top: 8px;
    font-size: 0.85rem;
    border-top: none; /* remove a linha branca */
    margin-top: 5px;
}

/* ================================================ */
/* === CÓDIGO PARA MANTER O RODAPÉ SEMPRE EMBAIXO === */
/* ================================================ */

html {
  height: 100%;
}

body {
  min-height: 100%; /* Garante que o corpo ocupe no mínimo a altura total da tela */
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1; /* Essencial! Faz o conteúdo principal crescer e ocupar o espaço vazio, empurrando o rodapé */
}


/* ================================================ */
/* === ESTILO DO BANNER DE COOKIES (LGPD) === */
/* ================================================ */

#cookie-banner {
    position: fixed; /* Fixo na tela */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #212529; /* Um fundo escuro, quase preto */
    color: #f8f9fa; /* Texto claro */
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Garante que fique acima de outros elementos */
    display: none; /* Começa escondido, o JS vai mostrar se necessário */
}

.cookie-banner-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Permite quebrar em telas menores */
}

.cookie-banner-content p {
    margin: 0;
    font-size: 0.9rem;
    flex-grow: 1; /* Faz o texto ocupar o espaço disponível */
}

#aceitar-cookies-btn {
    background-color: #005cbf; /* Cor azul principal do site */
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

#aceitar-cookies-btn:hover {
    background-color: #004a99; /* Um tom de azul mais escuro no hover */
}

/* Ajuste para telas pequenas */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Garante que o Font Awesome seja carregado para os ícones */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

