/* Estilos para la nueva sección de contacto */
.container6 {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
}

.grid6 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  align-items: start;
}

@media (min-width: 1024px) {
  .grid6 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.text-section6 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.text-section6 h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 2rem;
}

.text-xl6 {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1rem;
}

.text-section6 > div {
  margin-bottom: 1rem;
}

.btn6 {
  background-color: #1f2937;
  color: white;
  border: none;
  padding: 1.2rem;
  font-size: 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s;
}

.btn6:hover {
  background-color: #374151;
  color: white;
  text-decoration: none;
}

.btn6 {
  margin-top: 0.5rem;
}

.social-icons6 {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  margin-left: 0;
  justify-content: flex-start;
}

.icon-circle6 {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: white;
}

.icon-circle6:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
}

.map-container6 {
  width: 100%;
  height: 250px;
  border-radius: 1rem;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
}

.form-container6 {
  background-color: #9380ff;
  padding: 2.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(8px);
}

.form-group6 {
  margin-bottom: 1.5rem;
}

.form-group6 label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: white;
}

.form-group6 label svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-group6 input,
.form-group6 textarea,
.form-group6 select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  resize: none;
}

.form-group6 input::placeholder,
.form-group6 textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group6 input:focus,
.form-group6 textarea:focus,
.form-group6 select:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.form-group6 select option {
  background-color: #9380ff;
  color: white;
}

.submit-btn6 {
  background-color: #1f2937;
  color: white;
  font-size: 1.1rem;
  padding: 1.2rem 1.5rem;
  width: 100%;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
}

.submit-btn6:hover {
  background-color: #374151;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.submit-btn6 i {
  font-size: 1.1rem;
}
