.img-description {
  max-width: 785px;
  width: 100%;
  max-height: 435px;
  height: 100%;
}

.gradiant-img {
  background: #ffffff;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

.content-img-description {
  position: relative;
}

.img-logo-rusa {
  position: absolute;
  bottom: 80px;
  right: 10px;
}

.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.whatsapp-widget a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  background-color: #25d366;
  border-radius: 50px;
  padding: 10px 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}
.whatsapp-widget a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.whatsapp-widget i {
  font-size: 30px;
  margin-right: 10px;
}
.whatsapp-widget span {
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}
/* Opcional: Ocultar el texto en móviles para un ícono más pequeño */
@media (max-width: 767px) {
  .whatsapp-widget span {
    display: none;
  }
  .whatsapp-widget a {
    padding: 10px;
  }
}

/* 🛡️ Anti-Bot Security Styles */
.form-check {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form-check-input {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 3px;
  border: 2px solid #ddd;
  transition: all 0.3s ease;
}

.form-check-input:checked {
  background-color: #ff7a00;
  border-color: #ff7a00;
}

.form-check-input:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.25);
}

.form-check-label {
  cursor: pointer;
  user-select: none;
  flex: 1;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  position: relative;
}

.form-check-label:hover {
  color: #333;
}

/* Security indicator animation */
.form-check-input:checked + .form-check-label::after {
  content: "✓";
  color: #ffffff;
  font-weight: bold;
  font-size: 11px;
  position: absolute;
  left: -24px;
  top: 1px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: checkmark 0.3s ease-in-out;
}

@keyframes checkmark {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* Enhanced form security visual feedback */
.form-control.security-validated {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-control.security-warning {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.form-control.security-error {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Honeypot field - completely hidden */
input[name="website"] {
  position: absolute !important;
  left: -5000px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
  pointer-events: none !important;
  z-index: -1000 !important;
}
