.video-container-full {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: black;
}

.video-container-full video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

video {
    object-fit: cover;
    overflow: clip;
}

/* Clientes swiper navigation arrows */
    .clientes-swiper-wrapper { position: relative; }
    .clientes-prev,
    .clientes-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      cursor: pointer;
      color: #5a6b3c;
      transition: color 0.2s;
      background: none;
      border: none;
      font-size: 1.5rem;
      padding: 4px;
    }
    .clientes-prev:hover,
    .clientes-next:hover {
      color: #3d4a28;
    }
    .clientes-prev { left: 0; }
    .clientes-next { right: 0; }
    .clientes-swiper .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: center;
    }

.form-control {
  width: 100%;
  border: 1px solid #e5e7eb; /* gris claro tipo Tailwind border */
  border-radius: 0.5rem; /* rounded-lg */
  padding: 0.75rem 1rem; /* py-3 px-4 */
  font-size: 0.875rem; /* text-sm */
  outline: none;
  resize: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* opcional: estilo en focus para que no pierdas UX */
.form-control:focus {
  border-color: #3b82f6; /* azul tipo Tailwind */
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.btn-primary {
  background-color: #4a6274;
  color: #ffffff;
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
  padding: 0.75rem 1.5rem; /* py-3 px-6 */
  border-radius: 9999px; /* rounded-full */
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #3b5060;
}