@import url("inicio.css");

/* ===== FORMULARIO DE CONTACTO ===== */
.formulario-section {
  max-width: 700px;
  margin: 4rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.formulario-titulo {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #0a3d62;
}

.formulario {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.campo {
  display: flex;
  flex-direction: column;
}

.campo label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #333;
}

.campo input,
.campo textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.campo input:focus,
.campo textarea:focus {
  outline: none;
  border-color: #f7b733;
  box-shadow: 0 0 0 3px rgba(247, 183, 51, 0.3);
}

/* Botón reutiliza la clase .btn de estilos.css */
.formulario .btn {
  align-self: flex-start;
  cursor: pointer;
  border: none;
}
/* ===== HERO (copiado de CentroDeDia.css) ===== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 50px;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text .subtitulo {
  color: #ff6600;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text .descripcion {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-img {
  flex: 1;
  text-align: center;
}

.hero-img img {
  max-width: 400px;
}

.botones {
  display: flex;
  gap: 1rem;
}

.btn {
  background: linear-gradient(to right, #f7b733, #fc4a1a);
  color: white;
  padding: .7rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.btn-play {
  background: none;
  border: 2px solid #fc4a1a;
  font-size: 1rem;
  cursor: pointer;
  color: #fc4a1a;
  padding: .7rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-play:hover {
  background: #fc4a1a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
