/* Contacto */
.contacto {
  background: white;
}

.contacto-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0072bc;
}

.submit-btn {
  background: #0072bc;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #005a94;
}

.contacto-info h3 {
  color: #0072bc;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.contacto-item {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #f7931d;
}

#contact-success {
  margin-top: 1.5rem;
}

.alert-success {
  padding: 1rem 1.2rem;
  background: #e7fbee;
  color: #17873d;
  border-left: 4px solid #3ad15a;
  border-radius: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(26, 62, 110, 0.09);
}

.alert-success i {
  font-size: 1.4em;
}

.alert-error {
  padding: 1rem 1.2rem;
  background: #fff2f0;
  color: #be3131;
  border-left: 4px solid #ff7777;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
