/* C:\xampp\htdocs\RedaStatico\public_html\assets\css\Contato.css */
.contato-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  font-family: "Arial", sans-serif;
  color: #333;
}

.contato-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contato-title {
  font-size: 2.5rem;
  color: #bb0606;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.contato-subtitle {
  font-size: 1.2rem;
  color: #555;
}

/* Seção de informações */
.contato-infoSection {
  margin-bottom: 3rem;
}

.contato-sectionTitle {
  font-size: 1.8rem;
  color: #bb0606;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-align: center;
}

/* Lista de informações */
.contato-infoList {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colunas */
  gap: 2rem;
}

.contato-infoItem {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Garante que todas as divs tenham a mesma altura */
}

.contato-infoItem:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.contato-icon {
  font-size: 1.5rem;
  color: #bb0606;
  margin-top: 0.5rem;
}

.contato-details h3 {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 0.5rem;
}

.contato-details p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.contato-details a {
  color: #bb0606;
  text-decoration: none;
  font-weight: bold;
}

.contato-details a:hover {
  text-decoration: underline;
}

/* Seção do mapa */
.contato-mapSection {
  margin-top: 3rem;
}

.contato-mapContainer {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .contato-title {
    font-size: 2rem;
  }

  .contato-sectionTitle {
    font-size: 1.4rem;
  }

  .contato-infoList {
    grid-template-columns: 1fr; /* 1 coluna em telas pequenas */
  }

  .contato-infoItem {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contato-icon {
    margin-top: 0;
  }
}