/* =================================== */
/* FORMULARIO DE CONTACTO - ESTILOS PERSONALIZADOS
/* =================================== */

.steps-section .step-icon {
  transition: transform 0.3s ease;
}
.steps-section .step-icon:hover {
  transform: scale(1.15);
}
.steps-section h3 {
  font-family: var(--font-title);
  font-weight: 700;
}
/* Estilos para el botón de WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* Asegura que esté por encima de otros elementos */
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* Para hacerlo circular */
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); /* Sutil sombra */
}

/* Opcional: Animación al pasar el ratón */
.whatsapp-float:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}
/* CTA Section */
.bg-olive-dark {
  background-color: #4a5500; /* verde oscuro más profundo */
}

.cta-bg {
  background: rgba(
    255,
    255,
    255,
    0.1
  ); /* ligera transparencia para resaltar texto */
  border-radius: 1rem;
  padding: 3rem;
}

.text-dark-soft {
  color: #3a3a3a; /* texto oscuro */
}

/* Contenedor del formulario */
.contact-form-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--color-bg);
}

.contact-form-section .form-control {
  border: 1px solid #ced4da;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

/* Foco en inputs */
.contact-form-section .form-control:focus {
  border-color: var(--color-olive);
  box-shadow: 0 0 0 0.25rem rgba(107, 142, 35, 0.25);
  outline: 0;
}

/* Etiquetas del formulario */
.contact-form-section .form-label {
  color: var(--color-olive-dark);
  font-weight: 600;
  font-family: var(--font-title);
}

/* Botón de envío */
.contact-form-section .btn-primary {
  background-color: var(--color-olive);
  border-color: var(--color-olive-dark);
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.contact-form-section .btn-primary:hover {
  background-color: var(--color-olive-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Animación sutil al cargar */
.contact-form-section form {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 576px) {
  .contact-form-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .contact-form-section form {
    padding: 0 1rem;
  }

  .contact-form-section .btn-primary {
    width: 100%;
  }
}
