.contato-section {
  position: relative;
  padding: 110px 20px 70px;
  background:
    radial-gradient(circle at top left, rgba(196, 138, 58, 0.08), transparent 32%),
    linear-gradient(180deg, #f8f9fb 0%, #eef3f8 100%);
  overflow: hidden;
}

.contato-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contato-info {
  font-family: "Lato", sans-serif;
  max-width: 1000px;
}

.contato-tag,
.contato-mini-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #c48a3a;
  background: rgba(196, 138, 58, 0.1);
  border: 1px solid rgba(196, 138, 58, 0.18);
  margin-bottom: 18px;
}

.contato-info h2 {
  font-size: 46px;
  line-height: 1.15;
  color: #0d1b2a;
  margin-bottom: 18px;
  max-width: 700px;
}

.contato-info > p {
  font-size: 17px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 38px;
  max-width: 680px;
}

.contato-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contato-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  padding: 26px 24px;
  border-radius: 20px;
  border: 1px solid rgba(220, 227, 235, 0.9);
  box-shadow: 0 14px 35px rgba(13, 27, 42, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contato-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(13, 27, 42, 0.12);
  border-color: rgba(196, 138, 58, 0.28);
}

.contato-card-topo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.contato-card-icone {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c48a3a, #e2b36f);
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(196, 138, 58, 0.25);
}

.contato-card h3 {
  font-size: 18px;
  color: #0d1b2a;
  margin: 0;
}

.contato-card p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

.contato-card-localizacao {
  grid-column: span 1;
}

.contato-cta-section {
  padding: 0 20px 100px;
  background: linear-gradient(180deg, #eef3f8 0%, #ffffff 100%);
}

.contato-cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contato-cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2740 0%, #16395f 100%);
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 24px 55px rgba(15, 39, 64, 0.2);
}

.contato-cta-box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: rgba(196, 138, 58, 0.12);
  border-radius: 50%;
}

.contato-cta-box::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.contato-cta-box > * {
  position: relative;
  z-index: 1;
}

.contato-mini-tag {
  color: #f2c27d;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(242, 194, 125, 0.22);
}

.contato-cta-box h3 {
  font-family: "Lato", sans-serif;
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 14px;
}

.contato-cta-box p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  max-width: 540px;
}

.contato-botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-contato-principal,
.btn-contato-secundario {
  min-width: 210px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  padding: 16px 22px;
  transition: all 0.3s ease;
}

.btn-contato-principal {
  background: linear-gradient(135deg, #c48a3a, #e2b36f);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(196, 138, 58, 0.22);
}

.btn-contato-principal:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 28px rgba(196, 138, 58, 0.28);
}

.btn-contato-secundario {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-contato-secundario:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .contato-info h2 {
    font-size: 40px;
  }

  .contato-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contato-card-localizacao {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .contato-section {
    padding: 85px 18px 55px;
  }

  .contato-cta-section {
    padding: 0 18px 80px;
  }

  .contato-info h2 {
    font-size: 34px;
  }

  .contato-info > p {
    font-size: 16px;
  }

  .contato-cards {
    grid-template-columns: 1fr;
  }

  .contato-card-localizacao {
    grid-column: auto;
  }

  .contato-cta-box {
    padding: 30px 24px;
    border-radius: 22px;
  }

  .contato-cta-box h3 {
    font-size: 28px;
  }

  .contato-botoes {
    flex-direction: column;
  }

  .btn-contato-principal,
  .btn-contato-secundario {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .contato-section {
    padding: 70px 15px 45px;
  }

  .contato-cta-section {
    padding: 0 15px 70px;
  }

  .contato-info h2 {
    font-size: 28px;
  }

  .contato-info > p {
    font-size: 15px;
    line-height: 1.7;
  }

  .contato-card {
    padding: 22px 18px;
    border-radius: 16px;
    min-height: auto;
  }

  .contato-card-icone {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .contato-cta-box h3 {
    font-size: 24px;
  }

  .contato-cta-box p {
    font-size: 15px;
  }
}