#navbar-menu {
  background-color: #3e3e1f !important;
}

.contact-section {
  background-color: #e6e3d9;
  padding-top: 35vh;
  padding-bottom: 25vh;
  padding-left: 15px;
  padding-right: 15px;
}

.contact-container {
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 1300px;
}

.contact-text {
  width: 40%;
  height: 100%;
}

.contact-text h2 {
  font-size: 45px;
  line-height: 1.3;
  color: #3e3e1f;
  text-align: center;
}

.contact-text h2 span {
  color: #a87946;
  font-weight: bold;
}

.contact-text .highlight {
  color: #a87946;
}

/* Formulario con logo de fondo */
.form-wrapper {
  position: relative;
  width: 60%;
}

.form-logo {
  position: absolute;
  top: 44%;
  left: 50%;
  width: 45%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.contact-form {
  position: relative;
  z-index: 1;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 100%;
}

label {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 5px;
}

input,
textarea {
  border: none;
  border-bottom: 1px solid #555;
  background: transparent;
  padding: 5px;
  font-size: 1rem;
  outline: none;
}

textarea {
  resize: none;
}

.contact-btn {
  background-color: #a87946;
  color: #fff;
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
  width: 100%;
}

.contact-btn:hover {
  background-color: #8c5e2a;
}




@media (max-width: 980px) {
  .contact-text h2 {
  font-size: 28px;
}
}

@media (max-width: 780px) {
  .contact-text h2 {
  font-size: 28px;
}
.contact-container {
  display: grid;
}
.contact-text {
  width: 100%;
}
.form-wrapper {
  width: 100%;
}
}

@media (max-width: 780px) {
  .form-row {
  display: grid;
}
}
