.contact {
    padding: 60px 16%;
    background: #fff;
}

.contact-image {
    width: 75%;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.contact-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--brand);
}

.contact-info p a {
  color: inherit;
  text-decoration: none;
}

.contact-map iframe {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}

.btn-submit {
  background: var(--brand);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.btn-submit:hover {
  background: #e0a800; /* un tono más oscuro del brand */
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.btn-submit {
  background: var(--brand);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.btn-submit:hover {
  background: #e0a800;
}

.form-msg {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 550px) {
  .contact {padding: 60px 40px;}
  .contact-grid {
          display: flex;
    gap: 40px;
    margin-top: 30px;
    align-items: start;
    flex-direction: column;
    background: #fff;
  }
  .contact-form {width:100%}
  .contact-image{    width: 100%;}
}
