/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
  --red: #ff562a;
  --red-dark: #d42e24;
  --red-light: #e0623c0d;
  --orange: #f58e16;
  --orange-light: #f7a840;
  --dark: #2f1709;
  --dark2: #2a1514;
  --teal-bg: #cfd9d6;
  --light-gray: #e4e9e8;
  --white: #ffffff;
  --text-dark: #1d0d0c;
  --font: 'Poppins', sans-serif;
  --max-width: 1140px;
  --radius: 16px;
  --transition: all 0.3s ease;
}

/* ============ Reset ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================================================
   HERO / HEADER
   Fundo: vermelho → laranja, foto de obras em silhueta
   Layout: logo 8PPP esquerda, texto PPPs direita, linha diagonal decorativa
           calendário 1 esquerda, texto Fiscobras + calendário 2 direita abaixo
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #EA5630 35%, #e05c10 65%, #f07e0a 100%);
  /* overflow visível: hero engloba about + cidade.png */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 60px 0 0;
}

/* foto fundo em silhueta */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.18;
  mix-blend-mode: multiply;
}

/* linha diagonal decorativa branca */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 20%;
  width: 2px;
  height: 140%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(-30deg);
  transform-origin: top center;
}

.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: 25%;
  width: 2px;
  height: 140%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(-30deg);
  transform-origin: top center;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

/* === Hero: 3 linhas === */
.hero-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-row:last-child {
  margin-bottom: 0;
}

/* Linha 1: calendário-1 + logo-8ppp lado a lado */
.hero-row-1 {
  justify-content: center;
  align-items: center;
}

.hero-logo-8ppp {
  max-width: 560px;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.3));
}

/* Linha 2: fiscobras logo + calendário-2 */
.hero-row-2 {
  justify-content: center;
  align-items: center;
}

.hero-fiscobras-logo {
  max-width: 570px;
}

/* Linha 3: location badge centralizado */
.hero-row-3 {
  justify-content: center;
}


/* Local badge */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red);
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.location-badge i {
  color: var(--red);
  font-size: 2.2rem;
}

.location-badge small {
  display: block;
  font-size: 0.9rem;
  color: var(--red);
  font-weight: 400;
}

/* ==========================================================================
   SOBRE O EVENTO — dentro do hero, mesmo fundo, sem ruptura
   ========================================================================== */
.hero-about {
  position: relative;
  z-index: 2;
  padding: 60px 0 30px;
}

.about-card {
  background: var(--white);
  border-radius: 28px;
  padding: 60px 64px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-card h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 28px;
}

.about-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 18px;
}

.about-card p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   TRANSIÇÃO: cidade.webp — imagem pura, sem efeito
   margin-bottom negativo elimina o gap sub-pixel entre header e prog-section
   ========================================================================== */
.city-transition {
  display: block;
  line-height: 0;
  font-size: 0;
  margin-bottom: -3px;
  /* crava a imagem no rodapé do header sem gap */
}

.city-transition img {
  width: 100%;
  display: block;
  /* garante que não sobra linha de baseline */
}

/* ==========================================================================
   PROGRAMAÇÃO
   Fundo: #1d0d0c (escuro)
   Duas colunas, cards com cabeçalho vermelho
   ========================================================================== */
.prog-section {
  /* cidade-tile.webp como background tileado no lugar da cor sólida */
  background: var(--dark);
  padding: 60px 0 100px;
}

.section-heading {
  text-align: center;
  margin-bottom: 64px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 2px;
}

/* linha diagonal decorativa no fundo escuro */
.prog-section {
  position: relative;
  overflow: hidden;
}

.prog-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 5%;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--orange), transparent);
  opacity: 0.3;
  transform: rotate(-25deg);
  transform-origin: top;
}

.prog-grid {
  display: grid;

  /* Layout em linha (um abaixo do outro) */
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  /* Layout em coluna (lado a lado) - Descomente abaixo para testar e comente o bloco acima */
  /*
  grid-template-columns: 1fr;
  gap: 60px; 
  */

  position: relative;
  z-index: 2;
}

.prog-col-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
  gap: 18px;
  flex-wrap: wrap;
}

.prog-col-logo1 {
  max-height: 140px;
  max-width: 350px;
  object-fit: contain;
}

.prog-col-logo2 {
  max-height: 120px;
  max-width: 350px;
  margin-top: 20px;
  object-fit: contain;
}

.prog-col-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Card de programação - fundo escuro com cabeçalho vermelho */
.day-card {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.day-card-header {
  background: var(--red);
  padding: 18px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.day-card-body {
  background: var(--white);
  padding: 24px;
  min-height: 80px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* ==========================================================================
   LOGÍSTICA (Hospedagem, Alimentação, Fotos, Publicações)
   Fundo: cfd9d6 (cinza-azulado claro)
   Botões grandes: ícone circular vermelho + gradiente laranja → vermelho
   ========================================================================== */
.logistics-section {
  background: var(--teal-bg);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

/* linhas diagonais decorativas */
.logistics-section::before {
  content: '';
  position: absolute;
  top: -5%;
  left: -5%;
  width: 2px;
  height: 130%;
  background: linear-gradient(180deg, transparent, var(--red), transparent);
  opacity: 0.4;
  transform: rotate(35deg);
  transform-origin: top;
}

.logistics-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 120px 120px;
  border-color: transparent transparent var(--orange) transparent;
  opacity: 0.7;
}

.accordion-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* Botão acordeon: pastilha grande com ícone circular e chevron */
.acc-btn {
  display: flex;
  align-items: center;
  width: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--red) 100%);
  border: none;
  border-radius: 50px;
  padding: 6px 24px 6px 6px;
  cursor: pointer;
  gap: 0;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(220, 60, 40, 0.3);
}

.acc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 60, 40, 0.4);
}

.acc-icon-circle {
  width: 66px;
  height: 66px;
  min-width: 66px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  margin-right: 20px;
  box-shadow: inset 0 -3px 8px rgba(0, 0, 0, 0.15);
}

.acc-label {
  flex: 1;
  text-align: left;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.acc-chevron {
  color: var(--white);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.acc-item.open .acc-chevron {
  transform: rotate(180deg);
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.acc-content-inner {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 0 16px 16px;
  margin-top: -10px;
  padding: 30px 28px 24px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.em-construcao {
  text-align: center;
  padding: 20px 0;
  color: #666;
  font-style: italic;
}

.publicacoes-lista {
  display: grid;
  gap: 18px;
}

.publicacao-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(47, 23, 9, 0.08);
}

.publicacao-thumb-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.publicacao-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.publicacao-thumb-link:hover .publicacao-thumb {
  transform: scale(1.03);
}

.publicacao-conteudo {
  min-width: 0;
}

.publicacao-link {
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.publicacao-link:hover {
  color: var(--red);
}

/* ==========================================================================
   ARTIGO CIENTÍFICO
   Fundo: gradiente laranja → vermelho
   Texto branco, imagem de papel e lápis à direita
   ========================================================================== */
.article-section {
  background: linear-gradient(140deg, var(--orange-light) 0%, var(--orange) 30%, var(--red) 75%, var(--red-dark) 100%);
  padding: 0 0 60px;
  /* removido padding-top para o container de logos encostar no topo da seção */
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   SEÇÃO DE INSCRIÇÕES (2 Colunas: PPP e Fiscobras)
   ========================================================================== */
.inscricoes-container {
  padding-top: 10px;
  padding-bottom: 60px;
}

.inscricoes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-end;
}

.inscricao-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.inscricao-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  width: 100%;
}

.inscricao-logo-wrapper-ppp,
.btn-inscricao-link-ppp {
  max-width: 217px;
}

.inscricao-logo-wrapper-fiscobras,
.btn-inscricao-link-fiscobras {
  max-width: 298px;
}

.inscricao-logo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.3));
}

/* Botão utilizando a imagem fornecida com efeito de destaque no hover */
.btn-inscricao-link {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.btn-inscricao-link:hover {
  transform: translateY(-4px) scale(1.02);
}

.btn-inscricao-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
  transition: filter 0.25s ease;
}

.btn-inscricao-link:hover .btn-inscricao-img {
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.5));
}

@media (max-width: 850px) {
  .inscricoes-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

.article-text {
  color: var(--white);
}

.article-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.article-text p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 16px;
}

.article-text .prazo {
  font-weight: 600;
  margin-bottom: 32px;
}

.article-text .prazo a {
  color: var(--white);
  text-decoration: underline;
}

.btn-submit {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--white);
  color: var(--red);
}

.article-img {
  max-width: 340px;
}

/* ==========================================================================
   FOOTER / REALIZAÇÃO
   Fundo: #e4e9e8 (cinza claro)
   Logos + skyline de obras no rodapé
   ========================================================================== */
.footer {
  background: var(--light-gray);
  padding: 80px 0 0;
}

.footer-heading {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px 70px;
  margin-bottom: 80px;
}

.brand-logo-realizacao {
  max-width: 700px;
  object-fit: contain;
  filter: grayscale(10%);
  transition: var(--transition);
}

.brand-logo-apoio {
  max-height: 90px;
  object-fit: contain;
  filter: grayscale(10%);
  transition: var(--transition);
}

.brand-logo-apoio:hover,
.brand-logo-realizacao:hover {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.city-footer {
  line-height: 0;
  font-size: 0;
}

.city-footer img {
  width: 100%;
  display: block;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .hero-row {
    flex-direction: column;
    gap: 24px;
    text-align: left;
  }

  .hero-logo-8ppp {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }

  .hero-fiscobras-logo {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }

  .prog-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-img {
    display: none;
  }

  .about-card {
    padding: 40px 28px;
  }

  .brand-logo-apoio {
    max-height: 70px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .hero-ppp-title {
    font-size: 1.9rem;
  }

  .acc-label {
    font-size: 1.1rem;
  }

  .acc-icon-circle {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 1.3rem;
  }

  .brand-logo-apoio {
    max-height: 50px;
  }

  .publicacao-card {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   EVENTOS DO CRONOGRAMA (Dinâmico)
   ========================================================================== */
.evento-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 15px;
}

.evento-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.evento-horario {
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.evento-horario i {
  margin-right: 4px;
}

.evento-tipo {
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #666;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.evento-tipo i {
  color: var(--red);
  font-size: 1rem;
}

.evento-titulo {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--dark);
  line-height: 1.3;
  text-transform: uppercase;
}

.evento-descricao {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #444;
  line-height: 1.5;
}

.evento-participantes {
  font-size: 0.9rem;
  background: var(--red-light);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.participante-grupo {
  margin-bottom: 16px;
}

.participante-grupo:last-child {
  margin-bottom: 0;
}

.participante-mesa {
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.participante-pessoa {
  margin-bottom: 12px;
  margin-left: 4px;
  border-left: 2px solid rgba(0, 0, 0, 0.08);
  padding-left: 12px;
}

.participante-pessoa:last-child {
  margin-bottom: 0;
}

.participante-nome {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.participante-cargo {
  font-size: 0.85rem;
  font-weight: 400;
  color: #666;
  margin-top: 2px;
  line-height: 1.3;
}

.participante-tema {
  font-size: 0.85rem;
  font-style: italic;
  color: #555;
  margin-top: 4px;
}

/* ==========================================================================
   CARDS DE HOSPEDAGEM E ALIMENTAÇÃO (Dinâmicos)
   ========================================================================== */

.logistics-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.logistics-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logistics-count-badge {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(220, 60, 40, 0.2);
}

.logistics-subtitle {
  font-size: 0.92rem;
  color: #555;
  font-weight: 500;
}

.card-search-box {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.card-search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 0.88rem;
}

.card-search-input {
  width: 100%;
  padding: 8px 14px 8px 36px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 0.88rem;
  font-family: var(--font);
  outline: none;
  transition: all 0.2s ease;
  background: #ffffff;
}

.card-search-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 86, 42, 0.15);
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.logistics-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.logistics-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 86, 42, 0.3);
}

.card-top {
  margin-bottom: 14px;
}

.card-zone-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--red-light);
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(212, 46, 36, 0.12);
}

.card-name {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

.card-info {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.45;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.card-info i {
  color: var(--red);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.card-info a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.card-info a:hover {
  color: var(--red);
  text-decoration: underline;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}

.card-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
}

.card-btn-map {
  background: #f0f4f3;
  color: var(--dark);
  border: 1px solid #c8d3cf;
}

.card-btn-map:hover {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(255, 86, 42, 0.25);
}

.card-btn-phone {
  background: rgba(245, 142, 22, 0.12);
  color: #c96500;
  border: 1px solid rgba(245, 142, 22, 0.3);
}

.card-btn-phone:hover {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(245, 142, 22, 0.25);
}

.no-results-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 24px;
  color: #777;
  font-style: italic;
}

@media (max-width: 600px) {
  .logistics-header {
    flex-direction: column;
    align-items: stretch;
  }

  .card-search-box {
    max-width: 100%;
  }

  .logistics-grid {
    grid-template-columns: 1fr;
  }
}
