body {

  padding-top: 80px; /* espaço para o navbar fixo */
}

/* LOGO - TAMANHO PADRÃO */
.nutriobra-logo {
  height: 80px;
  width: auto;
}

/* MOBILE ATÉ 576px */
@media (max-width: 576px) {
  .nutriobra-logo {
    height: 60px !important;
  }
}

/* 992px ATÉ 1399px — AJUSTES SOLICITADOS */
@media (min-width: 992px) and (max-width: 1399px) {
  .nutriobra-navbar,
  .nutriobra-navbar .nav-link {
    font-size: 12px !important;
  }

  .nutriobra-logo {
    height: 90px !important;
  }
}




.hero-nutriobra {
  position: relative;
  min-height: 75vh; 

  background-image: url('../../home.jpg'); 
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero-programacao {
  position: relative;
  min-height: 75vh; 

  background-image: url('../../programacao.jpg'); 
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero-inscricoes {
  position: relative;
  min-height: 75vh; 

  background-image: url('../../bg-inscricoes.jpg'); 
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
}


.hero-inscricoes .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.623);
}

.hero-inscricoes .hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  
}

/* Título principal */
.hero-inscricoes .hero-title {
  font-weight: 300; /* um pouco mais “amigável” que 100 */

  font-size: clamp(2.2rem, 2.4vw + 1.8rem, 3.2rem); /* ligeiramente menor e mais equilibrado */
  line-height: 1.2; /* ajuda na verticalidade */
}


.hero-inscricoes .hero-title span {
  font-weight: 200;
}

.hero-inscricoes .hero-text {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 100;
}



.hero-nutriobra .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.623);
}

.hero-nutriobra .hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  
}

/* Título principal */
.hero-nutriobra .hero-title {
  font-weight: 300; /* um pouco mais “amigável” que 100 */

  font-size: clamp(2.2rem, 2.4vw + 1.8rem, 3.2rem); /* ligeiramente menor e mais equilibrado */
  line-height: 1.2; /* ajuda na verticalidade */
}


.hero-nutriobra .hero-title span {
  font-weight: 200;
}

.hero-nutriobra .hero-text {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 100;
}

.hero-programacao .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.623);
}

.hero-programacao .hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  
}

/* Título principal */
.hero-programacao .hero-title {
  font-weight: 300; /* um pouco mais “amigável” que 100 */

  font-size: clamp(2.2rem, 2.4vw + 1.8rem, 3.2rem); /* ligeiramente menor e mais equilibrado */
  line-height: 1.2; /* ajuda na verticalidade */
}


.hero-programacao .hero-title span {
  font-weight: 200;
}

.hero-programacao .hero-text {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 100;
}

/* Botões */
.hero-btn {
  padding: 0.5rem 1rem;
  font-weight: 200;
  border-radius: 20px;
  font-size:  0.95rem;
}

.hero-btn-yellow{
  background-color: #ce840e;
  color: #ffffff !important;
}
.hero-btn-yellow:hover {
  background-color: rgb(159, 117, 1);
  
  color: #fff !important;
}

.hero-btn-outline {
  border-width: 1px;
}

.hero-btn-green {
  background-color: #ffffff;
  font-size: 0.95rem;
  color: #9f1a16 !important;
}

.hero-btn-r {
  background-color: #01552e;
  color: #ffffff !important;
  font-size:  0.95rem;
}

.hero-btn-r:hover {
  background-color: #01391f;
  border-color: #01391f;
  color: #fff !important;
}

h2.hero-subtitle {
  font-size: clamp(1.2rem, 1vw + 0.9rem, 1.6rem);
  font-weight: 300;

  line-height: 1.25;
  opacity: 0.9;
}


.hero-btn-green:hover {
  background-color: #7d1511;
  
  color: #fff !important;
}

/* Mobile fica mais alto para visual melhor */
@media (max-width: 768px) {
  .hero-nutriobra {
    min-height: 80vh;
  }

  .hero-nutriobra .hero-text {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
}


/* Navbar */
.nutriobra-navbar {
 
  z-index: 99999;
}




/* Links do menu */
.nutriobra-navbar .nav-link {
  font-size: 1rem;

  text-transform: uppercase;
  color: #ffffff;
  padding-left: 1rem;
  padding-right: 1rem;
}

.nutriobra-navbar .nav-link:hover {
  color: #ef351d;
}

/* Link ativo (HOME) */
.nutriobra-navbar .nav-link.active {
  color: #ef5a1d;
  font-weight: 600;
}

/* Ícone "i" */
.nav-icon-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #666;
  font-size: 0.75rem;
  color: #666;
  margin: 0 0.5rem;
}


/* Dropdown */
.nutriobra-navbar .dropdown-menu {
  font-size: 0.9rem;
}

/* Ajustes mobile */
@media (max-width: 991.98px) {
  .nutriobra-navbar .navbar-nav {
    margin-top: 0.75rem;
  }

  .nutriobra-navbar .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-icon-info {
    margin-left: 0;
  }

  
}
.about-nutriobra-section {
  background-color: #ffffff;
}

/* Imagens da esquerda */
.about-img-wrapper {
  border-radius: 18px;
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Títulos e texto */
.about-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  color: #555;
}

.about-subtitle span {
  color: #ef5a1d; /* o layout */
  font-weight: 100;
}

.about-title {
  font-size: clamp(2.5rem, 2.8vw + 1.4rem, 3.1rem);
  font-weight: 100 !important;
  color: #700000;
}

.about-text {
  font-size: 1.5rem;

  color: #000000;
}

p.about-text {
  font-weight: 200;
}


/* Responsivo */
@media (max-width: 991.98px) {
  .about-nutriobra-section {
    padding-top: 3rem;
  }

  .about-title {
    margin-top: 0.75rem;
  }
}
/* ===== SECTION RESPONSABILIDADE ===== */

.responsabilidade-section {
  background-color: #ffffff;
}

/* Título azul com underline */
.resp-title {
  font-size: clamp(1.9rem, 2.4vw + 1rem, 2.6rem);
  font-weight: 700;
  color: #ef5a1d;
  position: relative;
  margin-bottom: 1rem;
}

.resp-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background-color: #ef5a1d;
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* Subtítulo */
.resp-subtitle {
  font-size: 1rem;
  margin-top: 12px;
  margin-bottom: 20px;
  color: #444;
}

/* Texto */
.resp-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}



/* Imagens */
.resp-img-wrapper {
  border-radius: 18px;
  overflow: hidden;
}

.resp-img-wrapper img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

/* Mobile */
@media (max-width: 991.98px) {
  .resp-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .resp-title,
  .resp-subtitle,
  .resp-text,
  .btn-resp {
    text-align: center;
  }

  .btn-resp {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
}
/* SECTION ORÇAMENTO COM FUNDO "FIXO" */
.cta-orcamento-section {
  position: relative;
  min-height: 60vh;
  padding: 5rem 0;

  background-image: url('../../orcamento.png'); 
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;

  color: #fff;
}

/* overlay escuro */
.cta-orcamento-section .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* textos */
.cta-title {
  font-size: clamp(2rem, 2.6vw + 1rem, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* botão branco */
.btn-cta-orcamento {
  background-color: #ffffff;
  color: #333;
  border-radius: 999px;
  padding: 0.8rem 2.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
}

.btn-cta-orcamento:hover {
  background-color: #f3f3f3;
  color: #000;
}

/* ajuste mobile – background-attachment: fixed costuma dar problema no iOS */
@media (max-width: 768px) {
  .cta-orcamento-section {
    min-height: 70vh;
    background-attachment: scroll; /* fallback pra celular */
  }

  .cta-title,
  .cta-text {
    text-align: center;
  }

  .btn-cta-orcamento {
    display: block;
    margin: 0 auto;
  }
}







/* ================================
   GRUPOS DE TRABALHO
   ================================ */
.gt-section {
  background-color: #eae5df !important;  /* fundo bege claro */
  padding: 2rem 0;
}

/* Título */
.gt-title {
  font-size: clamp(2rem, 2.4vw + 1rem, 2.7rem);
  font-weight: 400;
  color: #a02222; /* tom de vermelho */
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Lista de GTs */
.gt-list {
  margin: 0;
  padding: 0;
  list-style: none; /* remove bolinhas padrão */
}

/* Itens */
.gt-item {
  background-color: transparent;
  border: 1px solid #8d8d8d;
  border-radius: 999px;   
  padding: 0.4rem 1rem;
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: all 0.2s ease-in-out;
}

/* Links dentro dos itens */
.gt-item a {
  text-decoration: none;
  color: inherit;
  display: block; /* ocupa toda a área do item */
}

/* Hover */
.gt-item:hover {
  background-color: #a02222; /* vermelho */
  color: #fff;
  border-color: #a02222;
}



/* ===========================================================
   MINICURSOS (ONLINE) - 2 colunas SEGUNDA / TERÇA
   =========================================================== */

.mc-section {
  background-color: #ffffff;
}

.mc-title {
  font-size: clamp(1.8rem, 2.3vw + 1rem, 2.4rem);
  font-weight: 400;
  color: #333333;
}

/* Cabeçalho com os dias */
.mc-day-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 0.4rem;
}

/* Espaçamento entre as “linhas” de cards */
.mc-row {
  margin-bottom: 0.6rem;
}

/* Card base */
.mc-card {
  border-radius: 10px;
  padding: 0.9rem 1rem;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Efeito hover leve */
.mc-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

/* Variações de cor */
.mc-card-gray {
  background-color: #e0e0e0;
  color: #222222;
}

.mc-card-red {
  background-color: #a02123;
  color: #ffffff;
}

.mc-card-yellow {
  background-color: #f2a720;
  color: #ffffff;
}

/* Card com imagem */
.mc-card-img {
  padding: 0;
  overflow: hidden;
}

.mc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Textos internos */
.mc-code {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.mc-desc {
  font-size: 0.85rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

/* Link “INSCREVA-SE +” */
.mc-link {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  align-self: flex-end;
}

.mc-card-gray .mc-link {
  color: #a02123;
}

.mc-card-red .mc-link,
.mc-card-yellow .mc-link {
  color: #ffffff;
}

.mc-link span {
  font-size: 1rem;
  line-height: 1;
}

/* Responsividade – se quiser manter SEMPRE 2 colunas,
   não mexa nas col-6 do HTML.
   Se quiser 1 coluna no mobile, pode sobrescrever aqui. */
@media (max-width: 480px) {
  /* opcional: deixar em 1 coluna no celular
  .mc-row > .col-6 {
    width: 100%;
    flex: 0 0 100%;
  }
  */
}
/* 5 colunas no desktop */
@media (min-width: 992px) {
  .col-lg-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Estilo geral da seção */
.minicursos-title {
  font-size: 2.8rem;
  font-weight: 100;
}

.minicursos-day {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* Cards */
.minicurso-card {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  min-height: 150px;
}

.minicurso-card-mc1 {
  background-color: #3b7a48;
  color: white;
}

.minicurso-card-mc2 {
  background-color: #2c6d39;
  color: white;
}

.minicurso-card-mc3 {
  background-color: #9f1a16;
   color: white;
}

.minicurso-card-mc4 {
  background-color: #e79819;
  color: white;
}

.minicurso-card-mc5 {
  background-color: #a36a0e;
   color: white;
}

.minicurso-card-mc6 {
  background-color: #194d24;
  color: white;
}

.minicurso-card-mc7 {
  background-color: #113419;
  color: white;
}

.minicurso-card-mc8 {
  background-color: #ce840e;
  color: white;
}

.minicurso-card-mc9 {
  background-color: #123a1b;
  color: white;
}

.minicurso-card-mc10 {
  background-color: #78180f;
   color: white;
}


.minicurso-card-image {
  padding: 0;
  overflow: hidden;
  height: 150px; 
}

.minicurso-card-image img {
  width: 100%;
  height: 100%;      
  object-fit: cover;  
  object-position: center; 
  display: block;
}

/* Tipografia interna */
.minicurso-code {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.minicurso-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* CTA */
.minicurso-cta {
  font-size: 0.75rem;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #333333;
}

.minicurso-card-red .minicurso-cta,
.minicurso-card-yellow .minicurso-cta,
.minicurso-card-dark .minicurso-cta {
  color: #ffffff;
}

.minicurso-cta-light {
  color: #ffffff;
}

.minicurso-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 0.8rem;
  margin-left: 4px;
}

/* Espaçamento melhor no mobile */
@media (max-width: 575.98px) {
  .minicursos-title {
    font-size: 1.8rem;
  }
}



/* =========================
   PRAZOS E SUBMISSÕES
   ========================= */

/* fundo geral (verde chapado) */
.prazos-section {
  background-color: #194d24;
 
}

/* faixa central com textura / imagem */
.prazos-box {
  margin: 0 auto;
  padding: 3rem 4rem;

  /* textura da imagem central */
  background-image: url('../../green.png'); /* ajuste o caminho se precisar */
  background-size: cover;
  background-position: center;

  /* se quiser cantos retos, deixe sem border-radius;
     se quiser levemente arredondado, descomente abaixo */
  /* border-radius: 0 0 0 0; */
}

/* título à esquerda */
.prazos-title {
  font-size: 2.8rem;
  font-weight: 100;
  line-height: 1.1;
}

/* texto à direita */
.prazos-text p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* botão vermelho */
.prazos-btn {
  background-color: #c3313b;
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 2.8rem;
  font-weight: 500;
  border: none;
  font-size: 0.95rem;
}

.prazos-btn:hover {
  background-color: #a3242c;
  color: #fff;
}

/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 767.98px) {
  .prazos-section {
    padding: 2.5rem 0;
  }

  .prazos-box {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .prazos-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .prazos-text {
    text-align: left; /* ou center, se preferir */
  }

  .prazos-btn {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 260px;
  }
}


.comissao-title {
  font-size: 2.5rem;
  font-weight: 100;
  color: #7a0000;
}

.comissao-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-size: 1.3rem;
  font-weight: 100 !important;
}



.comissao-section {
  background-color: #f7f7f7;
}
.footer-section {
  background: 
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
    url('../../footer.jpg') center center / cover no-repeat;
  color: #ffffff;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .75rem;
  
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #d3d3d3;
}

.footer-email {
  font-size: 0.9rem;
}

.footer-social a {
  display: inline-block;
  color: #ffffff;
  font-size: 1.2rem;
  margin-right: 10px;
}

.footer-social a:hover {
  opacity: .7;
}







/* =========================
   BASE DA SECTION + VÍDEO
   ========================= */
.mesas-section {
  position: relative;
  overflow: hidden;
  min-height:85vh;      
}

.mesas-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.mesas-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);  
  display: flex;
  align-items: center;
}

/* título */
.mesas-title {
  font-size: 2.6rem;
  font-weight: 400;
  color: #fff;
}

/* =========================
   CARDS
   ========================= */
.mesa-card {
  background: rgba(0, 0, 0, 0.78);
  border-radius: 18px;
  padding: 1.6rem 1.8rem;
  color: #fff;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.mesa-card h5 {
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.mesa-card p {
  margin-bottom: 0.6rem;
}

/* infos embaixo */
.mesa-infos {
  margin-top: 0.6rem;
  font-size: 0.95rem;
}

/* badge */
.mesa-badge {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #b1181f;
  color: #fff;
  margin-bottom: 0.85rem;
}

.mesa-badge.conferencia {
  background-color: #ce840e;
}

/* =========================
   CONTROLES DO CARROSSEL
   ========================= */
.mesas-control {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

/* posição das setas */
.mesas-control.carousel-control-prev {
  left: -40px;
}

.mesas-control.carousel-control-next {
  right: -40px;
}

/* ícones brancos substituindo o padrão */
.mesas-control .carousel-control-prev-icon,
.mesas-control .carousel-control-next-icon {
  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
}

/* seta esquerda branca */
.mesas-control .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

/* seta direita branca */
.mesas-control .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}


/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 767.98px) {

  .mesas-section {
    min-height: auto;
  }

  .mesas-overlay {
    position: relative;
    background: rgba(0,0,0,0.6);
    align-items: flex-start;
  }

  .mesas-title {
    font-size: 2rem;
  }

  #mesasCarouselMobile .mesa-card {
    max-width: 360px;
    margin-bottom: 2.5rem;
  }

  .mesas-control {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: -3px;
    transform: none;
  }

  .mesas-control.carousel-control-prev {
    left: 30px;
  }

  .mesas-control.carousel-control-next {
    right: 30px;
  }
}


/* tamanho padrão (desktop) */
.logos-container img {
  height: 90px;   /* grande no desktop */
  width: auto;
}

/* no mobile (até 576px) */
@media (max-width: 576px) {
  .logos-container img {
    height: 70px;  /* menor no mobile */
    width: auto;
  }
}



