html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Animação do Ken Burns (Zoom lento) */
@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.ken-burns {
    animation: kenburns 6s ease-out forwards;
}

/* Animação Fade + Slide Up para o texto */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-slide-up-1 {
    animation: fadeSlideUp 0.5s ease 0.2s both;
}

.fade-slide-up-2 {
    animation: fadeSlideUp 0.5s ease 0.28s both;
}

.fade-slide-up-3 {
    animation: fadeSlideUp 0.5s ease 0.36s both;
}

/* Animação da Barra de Progresso */
@keyframes progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.animate-progress {
    animation: progress 5s linear forwards;
}

.bg-teal-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(88 204 201 / var(--tw-bg-opacity, 1)) !important;
}