.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  z-index: 100; /* Asegura que esté por encima de otros elementos */
}

.whatsapp-button:hover {
  background-color: #128c7e;
}

.whatsapp-button i {
  font-size: 30px;
}

@keyframes breathe {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-button {
  animation: breathe 2s ease-in-out infinite;
}

.img_mylogo {
  width: 25%;
}

.size_logo_text {
  font-size: 75%;
}

.team_text_background {
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  z-index: 1;
}

.team_text_background h3 {
  color: white;
}

.space_left {
  padding-left: 1.5rem;
}

.style_item_dev {
  color: #2ecc71;
}

.text_item_dev {
  font-size: 2rem;
  margin-bottom: 2rem;
}

select::-moz-focus-inner {
  border: 0 !important;
}

select:focus {
  -webkit-tap-highlight-color: transparent;
}

select {
  -webkit-tap-highlight-color: transparent;
}

form select {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  outline: 0;
  margin: 0;
  padding: 1.6rem 0.4rem 1.6rem 0.4rem;
  background-color: transparent;
  border-bottom: 1px solid var(--stroke-elements);
  font: normal 400 1.8rem var(--_font-default);
  color: var(--t-bright);
}

form select:focus {
  border-bottom: 1px solid var(--stroke-controls);
}

form select:required:valid {
  color: var(--t-bright);
}

.space_right {
  padding-left: 2rem;
}

@media only screen and (min-width: 768px) {
  form select {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1400px) {
  form select {
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 1600px) {
  form select {
    font-size: 2.6rem;
  }
}
