:root {
  --main-dark-20: color-mix(in srgb, var(--main-color) 80%, black);
  --main-dark-40: color-mix(in srgb, var(--main-color) 60%, black);
  --main-light-20: color-mix(in srgb, var(--main-color) 80%, white);
}

body {
  font-family: "Manrope";
}

header {
  height: 250px;

}

nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

nav ul {
  max-width: 700px;
  margin: 0 auto;
}

a:not(.btn):not(.paginate_button) {
  color: var(--main-color-dark) !important;
}

a:not(.btn):not(.paginate_button):hover h4 {
  color: white !important;
}

a:not(.btn):not(.paginate_button), a:not(.btn):not(.paginate_button):visited {
  color: #98A4AE !important;
}

a:not(.btn):not(.paginate_button).active {
  color: var(--main-color) !important;
}

.bg-pacient {
  background-color: var(--main-color);
}

.bg-pacient-dark {
  background: var(--main-color-dark);
  color: white;
);
}

.bg-pacient-dark h4 {
  color: white;
}

.bg-main-light {
  background-color: color-mix(in srgb, var(--main-color) 30%, white);
}

.btn-primary {
  background-color: var(--main-color);
  border: 0px;

}

.border-primary {
  border-color: var(--main-color) !important;
}

.btn:hover {
  background-color: var(--main-color-hover);
}


.whats {
  border-radius: 500px;
}

.patient-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 86px);
  background-color: color-mix(in srgb, var(--main-color) 30%, white);
  padding: 2rem;
}

.patient-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 20px;
}

.patient-header > * {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.clinic-logo {
  max-width: 300px;
  max-height: 100px
}

.mv-card {
  background-color: #F4F7FB;
  max-width: 700px;
  width: 100%;
}

.card-main-strong {
  background-color: var(--main-dark-20);
}

.card-main-dark {
  background-color: var(--main-dark-40);
}

.card-main-light {
  background-color: var(--main-light-20);
}

.cta-card {
  height: 200px;
  overflow: hidden !important;
  background-color: #ED0E4E;
}

.wrapper {
  padding-bottom: 0px;
}

.custom-icon {
  font-size: 24px;
}

.custom-link {
  height: 100px;
  width: 100px;
}

.waiting-img {
  max-height: 450px;
  width: 100%;
}



.attachment-list-enter-active,
.attachment-list-leave-active {
  transition: all 0.5s ease;
}

.attachment-list-enter-from {
  opacity: 0;
  transform: translateY(-20px);
}

.attachment-list-leave-to {
  opacity: 0;
  transform: translateX(20px);
}

.attachment-item {
  transition: all 0.3s ease;
  min-height: 37px;
}

.attachment-filename {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mic-bar-true-gradient {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #28a745, #ffc107, #dc3545);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 4px;
  transition: width 0.5s ease;
}


.star {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ccc;
  flex-grow: 1;
}

.star i {
  transition: color 0.5s, transform 0.5s;
  position: relative;
}

.star.selected i,
.star.hover i {
  color: #f4c150 !important;
  transform: scale(1.25);
}

/* Elemento que cria o efeito de pulse/brilho ao clicar */
.star-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background-color: rgba(244, 193, 80, 0.5);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.star-pulse.active {
  animation: pulse 0.5s ease-out;
}

@keyframes pulse {
  0% {
    width: 0;
    height: 0;
    opacity: 0.7;
  }
  100% {
    width: 45px;
    height: 45px;
    opacity: 0;
  }
}

.logo {
  max-width: 150px;
  height: auto;
}

.patient-card-title {
  background-color: var(--main-dark-40)
}

.patient-card-title-body {
  height: 140px;
}

@media (max-width: 575px) {
  .meet-wrapper {
    padding: 1rem !important;
  }


  #connection-status :not(i) {
    display: none !important;
  }

  .mv-card {
    flex-grow: 1;
    width: 100vw;
  }

  .patient-wrapper {
    padding: 0;
  }

  a {
    font-size: 12px !important;
  }

  .custom-icon {
    font-size: 20px;
  }
}

@media (max-width: 376px) {
  ul {
    gap: 0px;
  }

  li a {
    padding: 0 !important;
  }

}
