/* ============================================================
   Países com Dados — Estilos atualizados para o layout original
   ============================================================ */

.pg-datacountries {
  background-color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --- Hero -------------------------------------------------- */
.dc-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.dc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.dc-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
}
.dc-hero__content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -1px;
}
.dc-hero__content p {
  font-size: 20px;
  opacity: 0.9;
  font-weight: 400;
}

/* --- Sections --------------------------------------------- */
.dc-section {
  padding: 80px 0;
}
.dc-section--tabs { background-color: #fff; }
.dc-section--mirror { background-color: #f8f9fb; }
.dc-section--enterprises { background-color: #fff; }
.dc-section--logistic { background-color: #f8f9fb; }

.dc-section__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}
.dc-section__desc {
  text-align: center;
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* --- Tabs ------------------------------------------------- */
.dc-type-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  border-bottom: 2px solid #eee;
}
.dc-type-tab {
  padding: 15px 0;
  font-size: 16px;
  font-weight: 600;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.dc-type-tab.active {
  color: #e53935;
  border-bottom-color: #e53935;
}

.dc-panel { display: none; }
.dc-panel.active { display: block; }

/* --- Regions & Countries ---------------------------------- */
.dc-region {
  margin-bottom: 60px;
}
.dc-region:last-child { margin-bottom: 0; }

.dc-region__title {
  font-size: 14px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.dc-countries {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}
.dc-country {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  color: #333;
  font-size: 14px;
  transition: color 0.2s;
}
.dc-country:hover {
  color: #e53935;
}
.dc-flag {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.dc-country__name {
  font-weight: 400;
}

/* --- Responsivo --- */
@media (max-width: 768px) {
  .dc-hero__content h1 { font-size: 36px; }
  .dc-hero__content p { font-size: 16px; }
  .dc-section { padding: 50px 0; }
  .dc-type-tabs { gap: 15px; }
  .dc-type-tab { font-size: 14px; }
  .dc-countries { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
