.section-contacto {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacto {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contacto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h2 {
  font-family: "DM Sans", Sans-serif;
  color: #474752;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 0.7rem;
  font-size: 0.95rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color);;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin: 0.8rem 0;
}

.privacy a {
  color: var(--color);;
  text-decoration: none;
  font-weight: 500;
}

.privacy a:hover {
  text-decoration: underline;
}

.search-btn {
  width: 100%;
}


@media (max-width: 768px) {
  .contacto {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-form h2 {
    text-align: center;
  }
}


.section-info-contacto {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-info-contacto h2 {
  font-family: "DM Sans", Sans-serif;
  color: #474752;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.info-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.info-card .icon {
  font-size: 1.8rem;
  background: #ffe8e8;
  color: var(--color);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem auto;
  border-radius: 10px;
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

.info-card a {
  color: var(--color);;
  text-decoration: none;
}

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

.mapa-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mapa-container iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) and (orientation: portrait) {
  section {
    margin: 0 1rem !important;
  }

  .info-cards {
    grid-template-columns: repeat !important;
  }
}