/*
 * Proyecto: semillaselpotrero.com
 * Archivo: contacto.css
 * Autor: Javier Dávila
 * Fecha creación: 22.10.2025
 * ------------------------------
 * Versión: 0.0.1
 */

/* ==============================
  Sección formulario de contacto
================================= */
.contacto-formulario {
  background-color: var(--color-fondo-claro);
  padding: 3rem 0;
}

.contacto-titulo {
  color: var(--color-brand);
  font-weight: var(--fuente-heavy);
  line-height: 1.4;
}

/* Campos del formulario */
.contacto-form .form-control,
.contacto-form .form-select {
  border: 1px solid #333;
  border-radius: 15px;
  padding: 0.6rem 1.2rem;
  font-size: var(--text-base);
  color: var(--color-fuente-principal);
  background-color: #fff;
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contacto-form .form-control:focus,
.contacto-form .form-select:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 0.15rem rgba(14, 109, 49, 0.25);
  outline: none;
}

/* Textarea */
.contacto-form textarea.form-control {
  border-radius: 15px;
}

/* Checkbox y enlace */
.form-check-label {
  font-size: var(--text-sm);
  color: var(--color-fuente-principal);
}

.form-check-input {
  border-radius: 4px;
  border-color: var(--color-brand);
}

.form-check-input:checked {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
}

.politica-link {
  color: var(--color-brand);
  font-weight: var(--fuente-bold);
  text-decoration: none;
}

.politica-link:hover {
  text-decoration: underline;
}

/* Botón enviar */
.btn-enviar {
  background-color: var(--color-brand-alt);
  color: #fff;
  font-weight: var(--fuente-bold);
  border-radius: 25px;
  padding: 0.6rem 2rem;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-enviar:hover {
  background-color: var(--color-secundario-vivo);
  transform: translateY(-2px);
}

.btn-enviar:active {
  background-color: var(--color-secundario-oscuro);
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .contacto-form .row > div {
    text-align: center;
  }

  .form-check-label {
    text-align: left;
    display: inline-block;
  }
}


/* ======================================================
   Indicadores visuales para campos obligatorios
====================================================== */

/* Campos requeridos vacíos o no válidos */
.contacto-form .form-control:required:invalid,
.contacto-form .form-select:required:invalid,
.contacto-form input[type="checkbox"]:required:invalid {
  border-color: #e63946; /* rojo suave */
  box-shadow: 0 0 0 0.15rem rgba(230, 57, 70, 0.15);
}

/* Campos requeridos válidos */
.contacto-form .form-control:required:valid,
.contacto-form .form-select:required:valid,
.contacto-form input[type="checkbox"]:required:valid {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 0.15rem rgba(14, 109, 49, 0.2);
}

/* Indicador visual para foco en cualquier campo */
.contacto-form .form-control:focus:invalid,
.contacto-form .form-select:focus:invalid,
.contacto-form input[type="checkbox"]:focus:invalid {
  outline: none;
  border-color: #e63946;
  box-shadow: 0 0 0 0.15rem rgba(230, 57, 70, 0.25);
}

/* Pequeño asterisco rojo junto a los campos obligatorios */
.contacto-form [required]::placeholder {
  color: #666;
}

.contacto-form [required]:not([type="checkbox"]):after {
  content: "*";
  color: #e63946;
}

/* Si prefieres un asterisco antes del placeholder (no al final del input) */
.contacto-form [required]::placeholder::before {
  content: "* ";
  color: #e63946;
}

/* ==============================
  Sección contacto directo WhatsApp
================================= */
.contacto-directo-whatsapp {
  background-color: #fff;
  padding: 3rem 0;
}

.whatsapp-titulo {
  color: var(--color-brand);
  font-weight: var(--fuente-heavy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.icono-titulo {
  width: 50px;
  height: auto;
}

/* Tarjetas */
.contacto-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacto-foto {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--color-brand);
  margin-bottom: 1rem;
}

.contacto-nombre {
  color: var(--color-brand);
  font-weight: var(--fuente-heavy);
  font-size: var(--text-lg);
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-titulo {
    flex-direction: column;
  }

  .contacto-foto {
    width: 120px;
    height: 120px;
  }
}

/* ==============================
  Sección Oficina Principal
================================= */
.oficina-principal {
  background-color: #fff;
  padding: 3rem 0;
}

/* Centrado general */
.oficina-principal .container {
  display: flex;
  justify-content: center;
}

.oficina-principal .col-lg-10 {
  max-width: 1100px;
  width: 100%;
}

/* Título */
.oficina-titulo {
  color: var(--color-brand);
  font-weight: var(--fuente-heavy);
}

/* Imagen */
.oficina-img {
  position: relative;
}

.oficina-img img {
  border-radius: 15px;
  border: 1px solid #ddd;
  object-fit: cover;
  height: 240px;
  width: 100%;
}

.oficina-ciudad {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-brand);
  color: #fff;
  font-weight: var(--fuente-heavy);
  font-size: var(--text-md);
  padding: 0.3rem 0;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

/* Datos */
.oficina-datos li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-md);
  color: var(--color-fuente-principal);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.oficina-datos img {
  width: 22px;
  height: auto;
  flex-shrink: 0;
  margin-top: 3px;
}

.oficina-datos a {
  color: var(--color-brand);
  text-decoration: none;
}

.oficina-datos a:hover {
  text-decoration: underline;
}

/* ==============================
  Horarios debajo del título
================================= */

/* Quitamos el flex general en este li para el bloque de horarios */
.oficina-horario {
  flex-direction: column;
  align-items: flex-start;
}

/* Encabezado del horario (ícono + texto) */
.oficina-horario > div.d-flex {
  align-items: center;
}

/* Cajas de horario */
.horario-box {
  padding: 0rem 2rem;
  text-align: left;
  height: 100%;
  width: 15rem;
}

.horario-box h4 {
  color: var(--color-brand);
  font-weight: var(--fuente-bold);
  margin-bottom: 0.4rem;
  font-size: var(--text-md);
}

.horario-box p {
  margin: 0;
  color: var(--color-fuente-principal);
  font-size: var(--text-md);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .oficina-principal .container {
    display: block;
  }

  .oficina-img img {
    height: 210px;
  }
}
