.contact-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.contact-subtitle {
  font-size: 40px;
  font-weight: 700;
  color: var(--cor-3);
  margin-bottom: 80px;
  text-align: start;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(to top, var(--cor-2), var(--cor-p1));
  gap: 24px;
  padding: 40px 60px;
  border-radius: 0 12px 12px 0;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon img {
  width: 36px;
  height: 36px;
}

.contact-text p,
.contact-text a {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: var(--cor-p2);
}

@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-section {
    padding: 40px 12px;
    background-color: #ffffff;
  }

  .contact-map {
    border-radius: 12px 12px 0 0;
    min-height: 300px;
  }

  .contact-info {
    border-radius: 0 0 12px 12px;
    padding: 32px 24px;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .contact-subtitle {
    font-size: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
  }

  .contact-info {
    padding: 24px 16px;
    gap: 20px;
    align-items: flex-start;
  }

  .contact-text p,
  .contact-text a {
    font-size: 16px;
  }

  .contact-icon img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .contact-subtitle {
    font-size: 18px;
  }

  .contact-info {
    padding: 20px 12px;
    gap: 16px;
    align-items: flex-start;
  }

  .contact-text p,
  .contact-text a {
    font-size: 14px;
  }

  .contact-icon img {
    width: 20px;
    height: 20px;
  }
}
