/* Geral */
html,
body {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: transparent;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 200;
  color: #666;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-weight: 600;
  color: #FF8040;
}

p {
  margin-bottom: 0;
  line-height: 1.4;
}

p:last-child {
  margin-bottom: 0;
}

.small, small {
  font-size: .8em;
}

a,
a:link {
  color: #FF8040;
  outline: none !important;
  text-decoration: none;
}

a:focus,
a:hover {
  color: #E7611D;
}


/* Logo */
img.logo {
  width: 220px;
  height: auto;
  animation: fadeIn 1.5s ease-in-out;
}

img.w-40 {
  width: 40px;
}


/* Container */
.container {
  max-width: 600px !important;
  margin: 50px auto;
}


/* Cartão */
.card {
  background-color: #fff;
  color: #333;
  padding: 20px;
  border: none !important;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-in-out;
}

.dados-card {
  background: #f8f9fa;
  border-left: 5px solid #FF8040;
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
}

.dados-card h5 {
  color: #FF8040;
}

.comprovante {
  font-size: 24px;
  font-weight: bold;
  color: #FF8040;
  background: #f8f9fa;
  padding: 10px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 10px;
}


/* Formulário Inputs */
.form-label {
  margin-bottom: 0;
  font-size: 80%;
  color: #999;
}

.form-control {
  border-radius: 10px;
}

.form-control::placeholder {
  color: #999;
  opacity: 1;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #FF8040 !important;
  outline: 0;
  box-shadow: none !important;
}

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

.form-check-input:focus {
  border-color: #FF8040;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(255, 128, 64, 0.25);
}

.radio {
  position: relative;
  display: inline-block;
}

.radio .radio-input {
  position: absolute;
  opacity: 0;
}

.radio .radio-input:checked+.radio-label {
  border-color: #FF8040;
}

.radio .radio-input:checked+.radio-label .label-text,
.radio .radio-input:checked+.radio-label .material-symbols-outlined {
  color: #FF8040;
  font-weight: bold;
}

.radio .radio-label {
  display: -webkit-box;
  display: flex;
  width: 100%;
  height: 100px;
  border: 1px solid #CCC;
  border-radius: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.radio .radio-label .label-text {
  font-size: 16px;
  color: #888;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.radio .radio-label .material-symbols-outlined {
  font-size: 30px;
  color: #888;
}


/* Botões */
.btn {
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.45;
}

.btn-primary {
  color: #fff !important;
  background: #FF8040 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #E7611D !important;
}


/* Carregando */
.loading-container {
  display: flex;
  align-items: center;
  padding: 5px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #333;
}

.loading-spinner {
  animation: rotate 1s linear infinite;
}

.loading-text {
  color: #FF8040;
  margin-left: 2px;
}

.path {
  stroke: #FF8040;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

@keyframes dash {
  0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
  100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}


/* Efeito de Fade-In */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}


/* Media Queries */
@media (max-width: 560px) {
  .container {
    margin: 25px auto;
  }
  .radio .radio-label {
    width: 100%;
  }
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 4px solid;
  border-color: #fff #FF8040;
  animation: l1 1s infinite;
  margin-right: 5px;
}
@keyframes l1 {to{transform: rotate(.5turn)}}

