/* =========================
   Footer – Variáveis
   ========================= */
:root {

  --font-base: 'Roboto', Arial, sans-serif;
  --font-heading: 'Poppins', Arial, sans-serif;

  /* Base */
  --footer-bg: #eecbcb;
  --footer-color: #ffffff;
  --footer-link-color: #ffffff;
  --footer-link-hover-color: #dfe9dd;

  /* Opcional: integrações Bootstrap Package */
  --footer-border-color: rgba(255,255,255,.15);
  --footer-heading-color: var(--footer-color);
  --footer-meta-bg: #ffffff;
  --footer-meta-color: var(--myblack);
  --footer-muted: rgba(255,255,255,.75);

  /* Espaçamento */
  --footer-padding-y: 2.5rem;
  --footer-padding-x: 1rem;

  /* Social */
  --footer-social-size: 1.25rem;
  --footer-social-gap: .75rem;

  /* Formularios */
  --footer-input-bg: rgba(255,255,255,.1);
  --footer-input-border: rgba(255,255,255,.25);

  /* Radiu base  */
  --radius-md: 0.625rem; /* 10px */

  /* mysweets colors */  
  --vermelho: #A62100;
  --azul: #5CA8D1;
  --laranja: #F07600;
  --amarelo: #FFE502;

  --vermelho-border: #7A1800;
  --vermelho-texto: var(--amarelo);
  --vermelho-hover: #FFFFFF;

  --azul-border: #337A9E;
  --azul-texto:#FFFFFF;
  --azul-hover: #FFE502;

  --laranja-border:#B55600;
  --laranja-texto: #FFFFFF;
  --laranja-hover: #FFE502;

  --amarelo-border: #E6D000;        /* borda ligeiramente mais escura */
  --amarelo-texto: var(--vermelho);  /* texto normal (preto suave) */
  --amarelo-hover-texto: #ffffff;   /* texto no hover */

  --myblack: #222222;
}


/* ==========================================================================
   WebWeCare Overrides para Bootstrap Package + News
   ========================================================================== */

html {
  font-size: clamp(15px, 1.1vw, 18px);
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* ==========================================================================
   Overrides Bootstrap Package
   ========================================================================== */

.btn-primary {
  background-color: #778104;
  border-color: #778104;
}

.btn-primary:hover {
  background-color: #5c6203;
  border-color: #5c6203;
}

.navbar {
  background-color: #f8f9fa;
  font-family: var(--font-base);
}
.navbar-brand {
  font-family: var(--font-base);
  font-size: 1.3rem;
}

a {
  color: #778104;
}
a:hover {
  color: #5c6203;
  text-decoration: underline;
}

/* =========================
   Footer – Content area
   ========================= */
#page-footer.footer,
.footer,
.footer-section,
.footer-section-content {
  background-color: var(--footer-bg);
  color: var(--footer-color);
}

#page-footer {
  padding: var(--footer-padding-y) var(--footer-padding-x);
}

#page-footer a {
  color: var(--footer-link-color);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
#page-footer a:hover,
#page-footer a:focus {
  color: var(--footer-link-hover-color);
  text-decoration: underline;
}

/* Títulos (Bootstrap Package usa .element-header.* nas CE do footer) */
#page-footer .element-header.h1,
#page-footer .element-header.h2,
#page-footer .element-header.h3,
#page-footer .element-header.h4,
#page-footer .element-header.h5,
#page-footer .element-header h1,
#page-footer .element-header h2,
#page-footer .element-header h3,
#page-footer .h1, #page-footer .h2, #page-footer .h3, #page-footer .h4, #page-footer .h5 {
  color: var(--footer-heading-color);
  margin-bottom: .75rem;
}
/******************************/
/* top menu - remove anchor default decoration */
.navbar-nav .nav-link.nav-link-main {
  text-decoration: none;
}

/* Listas de navegação no footer (menus / list groups) */
#page-footer .nav,
#page-footer .list-unstyled {
  margin: 0;
  padding-left: 0;
}
#page-footer .nav li,
#page-footer .list-unstyled li {
  margin: .35rem 0;
}
#page-footer .nav-link {
  padding: 0;
  color: var(--footer-link-color);
}
#page-footer .nav-link:hover {
  color: var(--footer-link-hover-color);
}

/* Separadores horizontais suaves */
#page-footer hr {
  border-color: var(--footer-border-color);
  opacity: 1;
}

/* =========================
   Footer – Meta / Legal strip
   ========================= */
.footer-section-meta,
#page-footer .footer-meta,
#page-footer .footer-credits {
  background-color: var(--footer-meta-bg);
  color: var(--footer-meta-color);
  font-size: .95rem;
  text-align: center;
  padding: 1rem;
}

.footer-legal-links {
  font-size: .95rem;
  margin-top: .5rem;
  opacity: .9;
}
.footer-legal-links a {
  color: var(--footer-link-color);
  margin: 0 .5rem;
  text-decoration: none;
}
.footer-legal-links a:hover {
  color: var(--footer-link-hover-color);
  text-decoration: none;
}

/* =========================
   Footer – Social icons (bp usa .social-links ou ícones via <i>/<svg>)
   ========================= */
#page-footer .social-links,
#page-footer .social {
  display: flex;
  gap: var(--footer-social-gap);
  align-items: center;
  flex-wrap: wrap;
}
#page-footer .social a,
#page-footer .social-links a {
  display: inline-flex;
  width: calc(var(--footer-social-size) + .5rem);
  height: calc(var(--footer-social-size) + .5rem);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--footer-link-color);
  background: transparent;
  border: 1px solid var(--footer-border-color);
}
#page-footer .social a:hover,
#page-footer .social-links a:hover {
  color: var(--footer-link-hover-color);
  border-color: var(--footer-link-hover-color);
}

/* =========================
   Footer – Formulários simples (newsletter / contacto breve)
   ========================= */
#page-footer .form-control {
  color: var(--footer-color);
  background-color: var(--footer-input-bg);
  border-color: var(--footer-input-border);
}
#page-footer .form-control::placeholder {
  color: var(--footer-muted);
}
#page-footer .btn {
  border-radius: .375rem;
}

/* =========================
   Footer – Utilitários / ajustes Bootstrap
   ========================= */
#page-footer .container,
#page-footer .container-fluid {
  padding-left: var(--footer-padding-x);
  padding-right: var(--footer-padding-x);
}
#page-footer .row > [class*="col-"] {
  margin-bottom: 1rem;
}

/* Melhor contraste em links dentro de blocos textuais */
.footer-section-content a {
  color: var(--footer-link-color);
}
.footer-section-content a:hover {
  color: var(--footer-link-hover-color);
}

/* =========================
   Acessibilidade / Motion
   ========================= */
@media (prefers-reduced-motion: reduce) {
  #page-footer a { transition: none; }
}

/* =========================
   Dark mode opcional
   ========================= */
@media (prefers-color-scheme: dark) {
  #page-footer.footer,
  .footer-section-content {
    background-color: #1f1f1f;
    color: #e8e8e8;
  }
  #page-footer a { color: #e8e8e8; }
  #page-footer a:hover { color: #cfd8dc; }
  .footer-section-meta,
  #page-footer .footer-meta,
  #page-footer .footer-credits {
    background-color: #111;
    color: #ddd;
  }
}

/* ==========================================================================
   Overrides Extensão News
   ========================================================================== */

.news-list-view .news-list-item {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

.news-list-view .news-title,
.news-single .news-title {
  font-family: var(--font-base);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--myblack);
}

.news-list-view .news-date,
.news-single .news-meta {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

.news-list-view .teaser-text {
  font-size: 1rem;
  line-height: 1.5;
}

.news-list-view .more-link a {
  font-family: var(--font-base);
  color: #778104;
  font-weight: 600;
}
.news-list-view .more-link a:hover {
  color: #5c6203;
}

/*********************************************************************************/
/* buttons CTA mysweets */

.btn.btn-cta-mysweets {
  font-size: 1rem;         
  text-transform: uppercase;
  border-radius: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.5px;

  display: flex;               /* flex para centralizar conteúdo */
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 0.75rem 1.5rem;     /* altura relativa */
  line-height: 1.2;
  transition: color .2s ease, background-color .2s ease;

  /* 🔑 Responsividade */
  width: calc(100% - 50px);   /* 100% menos 50px de cada lado */
  margin: 0 auto;              /* garante 50px de margem lateral */
  max-width: 600px;            /* limite opcional em desktop */
}

/* Mobile: até 575px */
@media (max-width: 575.98px) {
  .btn.btn-cta-mysweets {
    width: 100%;          /* ocupa toda a largura */
    max-width: 280px;     /* limite opcional */
    font-size: 0.9rem;    /* texto mais pequeno */
    letter-spacing: 0.3px;
    padding: 0.6rem 1rem;   /* altura menor mas proporcional */
  }
}

/* Tablets: 576px até 767px */
@media (min-width: 576px) and (max-width: 767.98px) {
  .btn.btn-cta-mysweets {
    width: 320px;
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
}

/*
 * Variantes
 */
.btn.btn-pedido-informacao {
  background-color: var(--vermelho);
  color: var(--vermelho-texto);
  border-color: var(--vermelho-border);
}
.btn.btn-pedido-informacao:hover,
.btn.btn-pedido-informacao:focus {
  background-color: var(--vermelho);
  color: var(--vermelho-hover);
}

.btn.btn-sugestoes-natal {
  background-color: var(--azul);
  color: var(--azul-texto);
  border-color: var(--azul-border);
}
.btn.btn-sugestoes-natal:hover,
.btn.btn-sugestoes-natal:focus {
  background-color: var(--azul);
  color: var(--azul-hover);
}

.btn.btn-sugestoes-horeca {
  background-color: var(--laranja);
  color: var(--laranja-texto);
  border-color: var(--laranja-border);
}
.btn.btn-sugestoes-horeca:hover,
.btn.btn-sugestoes-horeca:focus {
  background-color: var(--laranja);
  color: var(--laranja-hover);
}


/* footer copyright message */
.footer-note {
  font-size: 14px;
  color: var(--vermelho);
}

.footer-note a {
  color: var(--vermelho) !important;
  text-decoration: none;
}

.footer-note a:hover,
.footer-note a:focus,
.footer-note a:active {
  color: var(--vermelho);  /* mantém a mesma cor no hover */
  text-decoration: underline;         /* só sublinha no hover */
}

/* product cards */
.card-custom {
  border: 2px solid #000;       /* borda visível */
  border-radius: 2rem !important;          /* cantos arredondados */
  overflow: hidden;             /* força imagem a respeitar a borda */


}

.card-img-top-rounded {
  width: 100%;                  /* ocupa a largura toda */
  display: block;               /* remove espaço de inline elements */
  border-radius: 0;             /* 🔑 não arredonda separadamente */
}

.card-custom .card-title {
  text-align: center;
  font-size: 1.8rem;        /* mais impacto (antes 1.5rem) */
  font-weight: 700;       /* mais bold */
  margin-bottom: 1.2rem;
  color: var(--myblack);
}

.card-custom .card-text {
/*  text-align: justify;*/
  font-size: 1.1rem;     /* maior que antes (antes 1rem) */
  line-height: 1.4;       /* mais legível */
}

.card-custom .btn {
  display: block;
  margin: 1rem auto 0 auto; /* topo, lados auto, em baixo */
}

/** ************************ **/
/* Promo message base */
.promo-msg {
  font-family: var(--font-base);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--myblack);            /* cor base, ajusta se precisares */
  margin: 1rem 0;
}

/* Estilo para <strong> dentro da promo */
.promo-msg strong {
  font-weight: 700;
}

/* Responsivo */
@media (max-width: 767.98px) {
  .promo-msg {
    font-size: 1.6rem;   /* tablet */
  }
}

@media (max-width: 575.98px) {
  .promo-msg {
    font-size: 1.3rem;   /* mobile */
  }
}



/***************************************************************************************/
/* Bloco de contacto homepage */
.contacto-texto {
  color: var(--vermelho);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/* Título */
.contacto-titulo {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

/* Itens (telefone, email, etc.) */
.contacto-item {
  font-size: 1.5rem;
  margin: 0;
  display: flex;
  align-items: center;
  line-height: 1.4;
  gap: 0.5rem;         
  padding-left: 1.5rem;   /* 🔑 indentação global */
}

.contacto-icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  fill: currentColor;
}

.contacto-item-note {
  font-size: 0.75rem;           /* menor ainda (~50% do item) */
  color: rgba(0,0,0,0.55);      /* cinza mais suave */
  line-height: 1.0;             /* compacto */
  margin: 0 0 0 1.5rem;   /* muito perto do item + mesma indentação */
}

/* -------- RESPONSIVE -------- */

/* Tablets */
@media (max-width: 991.98px) {
  .contacto-titulo {
    font-size: 2rem;
  }
  .contacto-item {
    font-size: 1.3rem;
    padding-left: 1.2rem;  /* indentação ajustada */
  }
  .contacto-item-note {
    font-size: 0.9rem;
    margin-left: 1.2rem;        /* ajusta à indentação do item em tablet */
  }
}


/* Mobile */
@media (max-width: 575.98px) {

  .contacto-texto {
    max-width: 320px;
    gap: 0.5rem;
    margin: 0 auto; 
  }
  .contacto-titulo {
    font-size: 1.6rem;
  }
  .contacto-item {
    font-size: 1.1rem;
    padding-left: 1rem;   /* indentação proporcional no mobile */
    gap: 0.4rem;
  }
  .contacto-item-note {
    font-size: 0.8rem;          /* mais pequeno no mobile */
    margin-left: 1rem;          /* segue indentação reduzida do item */
    line-height: 1.1;
  }
}


/*** reduzir em 75% a imagem de contacto ***/
#c49 img {
  width: 80%;      /* imagem ocupa 75% da largura do container */
  height: auto;    /* mantém proporção original */
  display: block;  /* evita inline gaps */
  margin: 0 auto;  /* centra dentro da div */
}

/******************************************************************************/
/** frames **/

/* Por omissão (mobile e tablet) mantém full width */
.frame-layout-limited {
  width: 100%;
  margin: 0;               /* ocupa toda a largura */
}

/* A partir de desktop (≥ 992px) */
@media (min-width: 992px) {
  .frame-layout-limited {
    width: 50vw;           /* 50% da largura da viewport */
    margin-left: 2rem;     /* margem à esquerda (ajusta conforme necessário) */
    margin-right: 0;       /* sem margem à direita */
    max-width: none;       /* remove limite fixo de 1200px */
  }
  
  /* Garante que os cartões no interior se ajustam */
  .frame-layout-limited .card {
    width: 100%;           /* ocupa toda a largura disponível do container */
  }
}

/* FRAME: Reduz imagem a 75% */
.frame-layout-imgresize75 picture,
.frame-layout-imgresize75 img,
.frame-layout-imgresize75 figure.image {
  width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Responsivo: full width em mobile */
@media (max-width: 575.98px) {
  .frame-layout-imgresize75 picture,
  .frame-layout-imgresize75 img,
  .frame-layout-imgresize75 figure.image {
    width: 100%;
  }
}


/*************************************************************************************/



/* Wrapper externo com fundo a 100% viewport (full-bleed) */
.slick-bg {
  /* faz o bloco “sair” do container e ocupar a largura total do ecrã */
  width: 100vw;
  margin-inline: calc(50% - 50vw);  /* full-bleed */
  position: relative;

  /* fundo */
  background: url('/fileadmin/user_upload/home-carousel/home-bg-product-slider.jpg') center/cover no-repeat;
  background-attachment: fixed; /* opcional; mobile ignora muitas vezes */
  
  /* espaço vertical para o fundo “respirar” mesmo antes do slick calcular altura */
  padding-block: 2rem;
}

/* Overlay opcional para contraste */
.slick-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.2); /* ajuste conforme necessário */
  pointer-events: none;
}




/* Setas base */
.slick-prev:before,
.slick-next:before {
  content: '→';          /* ou '←' para prev */
  font-size: 2rem;       /* dobro do tamanho padrão */
  color: #fff;           /* branco */
  line-height: 1;
  opacity: 1;            /* remove opacidade default do slick */
}

/* Corrige prev para seta esquerda */
.slick-prev:before {
  content: '←';
}

/* Hover em vermelho */
.slick-prev:hover:before,
.slick-next:hover:before {
  color: #A62100;        /* vermelho */
}

/* Aumenta a área clicável dos botões (ajusta à tua UI) */
.slick-prev,
.slick-next {
  width: 56px;
  height: 56px;
  z-index: 2;
}

/* Zera o conteúdo default do slick e usa um pseudo com máscara SVG */
.slick-prev:before,
.slick-next:before {
  content: "" !important;                 /* substitui '→/←' */
  display: inline-block;
  width: 48px;                            /* TAMANHO DA SETA */
  height: 48px;
  opacity: 1 !important;

  /* Cor da seta */
  background-color: #fff;                 /* branco por defeito */

  /* Usa um único SVG como máscara (seta para a direita) */
  -webkit-mask: url('/fileadmin/branding/arrow-right-bold-svgrepo-com.svg') no-repeat center / contain;
          mask: url('/fileadmin/branding/arrow-right-bold-svgrepo-com.svg') no-repeat center / contain;
}

/* “Prev” é a mesma seta, só que rodada 180º */
.slick-prev:before {
  transform: rotate(180deg);
}

/* Hover: fica vermelho */
.slick-prev:hover:before,
.slick-next:hover:before {
  background-color: #A62100;              /* vermelho */
}


/* ***************************************************************************************** */
/* Botão Loja Online - usa o estilo base do botão cta - insere o botão numa frame */
/* Variante Loja Online */

/* Frame que contém e centraliza */
.btn-frame-loja-online {
  width: 100%;
  max-width: 250px;   /* limite no desktop */
  margin: 0 auto;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
}

.btn.btn-loja-online {
  background-color: var(--amarelo);
  color: var(--amarelo-texto);
  border: none;
  width: auto;               /* largura só do texto + padding */
  padding: 0.5rem 1.5rem;    /* altura e “largura de ~2 letras” */
  min-width: fit-content;    /* não encolhe mais que o texto */
  text-align: center;
}

/* Após clicar (active) e quando fica em foco, volta à cor original */
.btn.btn-loja-online:active,
.btn.btn-loja-online:focus,
.btn.btn-loja-online:visited {
  background-color: var(--amarelo);
  color: var(--amarelo-texto);
}

/* Acessibilidade: foco visível sem trocar a cor do texto */
.btn.btn-loja-online:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Apenas hover muda o texto para branco */
.btn.btn-loja-online:hover {
  background-color: var(--amarelo);
  color: #fff;
}

/* === RESPONSIVO === */

/* Mobile: até 575px */
@media (max-width: 575.98px) {

  .btn.btn-loja-online {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
    letter-spacing: 0.3px;
  }

  #page-header .container-mainnavigation {
    flex-wrap: nowrap; /* impede quebra para 2ª linha */
  }

  .btn-frame-loja-online {
    max-width: 160px;   /* botão mais compacto */
    padding: 0.3rem 0;
  }
}

/* Tablets: 576px até 991px */
@media (min-width: 576px) and (max-width: 991.98px) {
  .btn-frame-loja-online {
    max-width: 260px;
  }

  .btn.btn-loja-online {
    font-size: 1rem;
    padding: 0.7rem 1rem;
  }
}

/* Desktop: a partir de 992px */
@media (min-width: 992px) {
  .btn-frame-loja-online {
    max-width: 300px;
  }
}


/********************************************************/
/* produtos - legendas de imagens */
/* ---- FOTO: LEGENDA ---- */
.foto-caption {
  margin-top: 0.5rem;          /* espaço do conteúdo/imagen */
  text-align: center;          /* normalmente centrado abaixo da foto */
  color: var(--myblack);       /* cor de base do site */
  line-height: 1.3;            /* compacto mas legível */
}

/* Título da foto */
.foto-caption-title {
  font-size: 0.8rem;           /* ligeiramente superior ao base */
  font-weight: 600;            /* semi-bold para destacar */
  margin: 0;                   /* limpa margens */
}

/* Descrição da foto */
.foto-caption-desc {
  font-size: 0.8rem;           /* ligeiramente menor que base */
  font-weight: 400;            /* normal */
  margin: 0.2rem 0 0;          /* pequeno espaçamento abaixo do título */
  color: rgba(0,0,0,0.75);     /* cinza suave para não competir com o título */
}

/* Responsivo: em mobile o texto fica mais compacto */
@media (max-width: 575.98px) {
  .foto-caption-title {
    font-size: 1rem;
  }
  .foto-caption-desc {
    font-size: 0.8rem;
  }
}

/* ======= TÍTULO OFERTA EMPRESARIAL ======= */
.titulo-oferta-empresarial {
  font-weight: 600;
  color: var(--myblack);     /* usa a cor base de texto */
  letter-spacing: 0.3px;
  line-height: 1.2;
  /*Espaçamento superior equivalente à altura aproximada do título */
  padding-top: 1.8em;      /* 1.8 × tamanho da fonte atual */
}

/* Opcional: em mobile, ligeiramente menor */
@media (max-width: 575.98px) {
  .titulo-oferta-empresarial {
    font-size: 1.6rem;       /* ajustar conforme o restante tema */
    padding-top: 1.4em;    /* mantém proporção mas menos espaço no mobile */
  }
}

/******/
/* ===== GRID DE THUMBNAILS ===== */
.thumbnail-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;              /* espaço entre thumbnails */
  width: fit-content;     /* 🔑 ajusta ao conteúdo real */
  margin: 2rem auto;      /* centra no ecrã */
}

.thumbnail-title {
  flex-basis: 100%;         /* 🔑 força o título a ocupar linha inteira */
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--myblack);
  margin: 0 0 1rem 0;       /* espaçamento inferior */
  line-height: 1.2;
}

/* Cada thumbnail individual */
.thumbnail-item {
  display: block;
  flex: 0 0 auto;         /* 🔑 impede redimensionamento automático */
  width: 100px;            /* tamanho fixo */
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Hover suave */
.thumbnail-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Wrapper do bloco (fundo vermelho, ajusta ao conteúdo, centrado) */
.thumbnail-section {
  background: var(--vermelho);
  width: fit-content;          /* adapta-se à soma de título + thumbs */
  margin: 2rem auto;           /* centra o bloco */
  padding: 1rem 1.25rem;       /* respiro interno */
  border-radius: 0.5rem;       /* opcional: cantos suaves */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;                /* espaço entre título e grid */
}

/* Título dentro do wrapper (texto branco) */
.thumbnail-section-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;                   /* evita saltos verticais */
  text-align: center;
}

/* Evita que a grid abra margens dentro do wrapper */
.thumbnail-section .thumbnail-grid {
  margin: 0;
}

/* Mobile */
@media (max-width: 575.98px) {
  .thumbnail-grid {
    gap: 0.6rem;
  }

  .thumbnail-section-title {
    font-size: 1.2rem;
  }

  .thumbnail-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .thumbnail-item {
    width: 50px;
  }
}



/* === Wrapper geral (vermelho, centralizado) === */
.menu-select-wrapper {
  background-color: var(--vermelho);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;        /* permite quebrar no mobile */
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  width: fit-content;
  margin: 2rem auto;
}

/* === Label === */
.menu-select-label {
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

/* === Select (personalizado mas acessível) === */
.menu-select {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 0.4rem;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  outline: none;
  cursor: pointer;
  appearance: none;           /* remove o estilo padrão */
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 1rem;
}

/* === Hover / Focus === */
.menu-select:hover,
.menu-select:focus {
  background-color: rgba(255, 255, 255, 0.1);
}

/* === Opções internas === */
.menu-select option {
  color: var(--myblack);
  background-color: #fff;
}

/* === Mobile === */
@media (max-width: 575.98px) {
  .menu-select-wrapper {
    flex-direction: column;
    align-items: stretch;
    width: 90%;
    text-align: center;
  }
  .menu-select {
    width: 100%;
  }
}

/**** === footer-bottom === ****/
.footer-bottom {
    background: #f7f7f7;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #555;
}
.footer-bottom a {
    color: inherit;
    text-decoration: underline;
}


/********* esconder navegacao dentro do carrousel com o id 443 - canal horeca ******/

/* ===== DESKTOP (≥ 992px) ===== */
@media (min-width: 992px) {
    #c443 .carousel-indicators,
    #c443 .carousel-control-prev,
    #c443 .carousel-control-next {
        display: none !important;
    }
}

/* ===== MOBILE (< 992px) ===== */
/* Mantém visível apenas no mobile */
@media (max-width: 991.98px) {
    #c443 .carousel-indicators,
    #c443 .carousel-control-prev,
    #c443 .carousel-control-next {
        display: none !important;
    }
}
