.contact-section {
  padding: 60px 10%;
  background: #fff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.contact-text h2 {
  font-size: 2rem;
  color: #001b5e;
  margin-bottom: 20px;
}

.contact-text p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-social a {
  display: inline-block;
  margin-right: 10px;
  background: var(--primary-color);
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.contact-social a:hover {
  background: #0096cc;
}

.contact-cards {
  display: flex;
  gap: 20px;
}

.contact-card {
  flex: 1;
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card .icon {
  font-size: 1.5rem;
  color: #001b5e;
  background: var(--primary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin: 0 auto 15px;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #222;
}

.contact-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    flex-direction: column;
  }
}

/* #FORM ###########################################################################*/

.contact-form-section {
  padding: 60px 10%;
  background: #fff;
}

.contact-form-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.contact-map {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form-box {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form-box h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-form-box p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.5;
}

.contact-form .form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: #fff;
  padding: 14px 18px;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button i {
  margin-right: 8px;
}

.contact-form button:hover {
  background: #003366; /* cor mais escura */
}

@media (max-width: 900px) {
  .contact-form-container {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 300px;
  }
}
