@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
body {    font-family: 'DM Sans', sans-serif;
    background-color: rgb(253, 248, 234);
}
/* Layout base */
.contatos-wrapper {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 27px 16px 140px;
 
 
}



.contatos-badge{
  display: block;
  width: fit-content;
  
  padding: 6px 16px;
  border: 1px solid #f60;
  border-radius: 30px;
  color: #f60;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0 auto 9px;
  font-family: Arial, sans-serif;
}

.contatos-title{
   text-align: center;
  font-size: 39px;
  font-weight: 700;
  color: #000;
    margin: 0;
    line-height: 1;
    font-family: Arial, sans-serif;
}

.contatos-line{
   text-align: center;
   width: 150px;
  height: 4px;
  background: #f60;
  border-radius: 10px;
  margin: 12px auto 0;
}

/* Grid de cards */
.contatos-grid {
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin-top: 78px;
}

/* Card base */
.contato-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.19);
  border: 1px solid #e6e6e6;
  overflow: hidden;
  height: 38vh;
  width: 308px;
}

/* Cabeçalho do card */
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid #efefef;
}

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.card-title h2 {
  margin: 0;
  font-size: 16px;

  text-transform: uppercase;
  color: #000000;
}

.card-title p {
  margin: 3px 0 0;
  font-size: 13px;
  color: #777;
}

/* Corpo do card */
.card-body {
  padding: 14px 18px 18px;
}

.info-block {
  margin-bottom: 12px;
}

.info-label {
  display: block;
  font-size: 12px;
  color: #8a8a8a;
  margin-bottom: 4px;
  text-transform: uppercase;}
 

.info-value {
  font-size: 13px;
  color: #2b2b2b;
}

.info-value a {
color: #2c2c2c;
  text-decoration: underline !important;
}

.info-value a:hover {
  text-decoration: underline;
}

.info-divider {
  margin: 0 6px;
  color: #d0d0d0;
}

/* Link destaque */
.link-destaque {
  font-size: 13px;
  color: #1e63c6;
  text-decoration: none;
  font-weight: 600;
}

.link-destaque:hover {
  text-decoration: underline;
}

.info-desc {
  margin: 6px 0 0;
  font-size: 12px;
  color: #6f6f6f;
  line-height: 1.4;
}

/* Barras coloridas no topo */

.img-link {
  width: 160px; /* ajusta como quiser */
  height: auto;
  display: block;
  margin: 0 auto;
}
/* Responsividade simples */
@media screen and (max-width: 1000px) and (orientation: portrait) {
  .contatos-wrapper { padding: 16px 12px 30px; }
  .card-title h2 { font-size: 15px; }
  .card-title p { font-size: 13px; }

  .contatos-grid {

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  margin-top: 15px;
  }
  .contato-card {
  height:30vh;
  width: 336px;
}
.info-label {
  display: block;
  font-size: 13px;
}
.info-value a {
  font-size: 13px;
}
.contatos-line {
width: 133px;
  margin: 8px auto 0;
}
.contatos-title{
   text-align: center;
  font-size: 33px;
}
}