.JVVZ__contacto {
  padding: 0;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}

@media (min-width: 600px) {
  .JVVZ__contacto {
      padding: 2rem;
  }
}

.JVVZ__contacto .form-container {
  width: 100%;
  max-width: 500px;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.JVVZ__contacto .step {
  display: none;
  width: -webkit-fill-available;
  padding: 2rem;
  transition: 0.3s ease;
}

.JVVZ__contacto .step.active {
  display: block;
  width: -webkit-fill-available;
}

.JVVZ__contacto .step h2 {
  margin: 0 0 2rem 0;
  font-size: var(--font-size-large);
  color: var(--color-text-primary);
}

.JVVZ__contacto input,
.JVVZ__contacto select,
.JVVZ__contacto button {
  width: 100%;
  margin-top: 1rem;
  padding: 0.8rem;
  font-size: var(--font-size-medium);
  border: 1px solid #ddd;
  border-radius: 0.5rem;
}

.JVVZ__contacto button {
  color: var(--button-primary-text);
  background-color: var(--color-accent-primary);
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.JVVZ__contacto button:hover {
  color: var(--button-primary-text-hover);
  background-color: var(--button-primary-hover);
  opacity: 0.9;
}

.JVVZ__contacto .hidden {
  display: none;
}

.JVVZ__contacto .disclaimer {
  font-size: var(--font-size-small);
  margin-top: 0.5rem;
  color: #666;
  text-align: center;
}

.JVVZ__contacto .step {
  display: none;
  margin-bottom: 2rem;
}

.JVVZ__contacto .step.active {
  display: block;
}

.JVVZ__contacto .form-group {
  margin-bottom: 1rem;
}

.JVVZ__contacto .form-group input,
.JVVZ__contacto .form-group select {
  padding: 0.5rem;
  font-size: var(--font-size-medium);
  width: 100%;
  max-width: -webkit-fill-available;
}

.JVVZ__contacto .error {
  color: var(--color-error);
  font-size: var(--font-size-small);
  margin: 10px 0 0 0;
  display: none;
}

.JVVZ__contacto .form-actions {
  margin-top: 1rem;
}

.JVVZ__contacto .form-actions button {
  padding: 0.6rem 1.2rem;
  font-size: var(--font-size-medium);
  cursor: pointer;
}

.JVVZ__contacto .flag-select-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.JVVZ__contacto .flag-select-wrapper select {
  width: auto;
  min-width: 120px;
}

.JVVZ__contacto .custom-dropdown {
  position: relative;
  width: 120px;
  font-size: 1rem;
  user-select: none;
}

.JVVZ__contacto .custom-dropdown .selected {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #ccc;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  position: relative;
  top: 5px;
  width: 70px;
  color: #1e1e1e;
  font-size: small;
}

.JVVZ__contacto .custom-dropdown .selected img {
  width: 20px;
  height: auto;
}

.JVVZ__contacto .custom-dropdown .dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  width: 100%;
  z-index: 10;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: 0.3rem;
  max-height: 200px;
  overflow-y: auto;
}

.JVVZ__contacto .custom-dropdown.open .dropdown-options {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.JVVZ__contacto .custom-dropdown .dropdown-options li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
  color: #1e1e1e;
  font-size: small;
}

.JVVZ__contacto .custom-dropdown .dropdown-options li:hover {
  background: #f0f0f0;
}

.JVVZ__contacto .custom-dropdown .dropdown-options img {
  width: 20px;
  height: auto;
}