:root{
    --red-stde: #a11b20;
}

.fa-minus-circle{
    color: var(--red-stde) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #FFFFFF;
    color: #180B70;
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-red-stde{background-color: var(--red-stde);}
.text-red-stde{background-color: var(--red-stde);}

.custom-right-alignment {
    text-align: center;
}

.nav-color {
    background-color: #FFFFFF;
}

/* Estilo do cabeçalho aprimorado */
header {
    background: linear-gradient(135deg, #F8F9FA, #F8F9FA);
    padding: 100px 20px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Efeito de partículas no cabeçalho */
header::before,
header::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1%, transparent 20%);
    animation: rotate 10s linear infinite;
    opacity: 0.3;
}
header::after {
    animation-direction: reverse;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInDown 1.2s ease-out;
}

header .img {
    animation: fadeInDown 1.2s ease-out;
}


header p {
    font-size: 1.4rem;
    margin-top: 10px;
    opacity: 0.9;
    max-width: 700px;
    margin: 10px auto;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botão no cabeçalho */
header .cta-button {
    background-color: #FB6F20;
    color: #FFFFFF;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(251, 111, 32, 0.4);
    animation: bounceIn 1.8s ease-out;
}


header .cta-button:hover {
    background-color: #F58640;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(251, 111, 32, 0.5);
}

p {
    color: #180B70;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

.navbar-brand img {
    height: 40px;
}

.nav-item a {
    font-size: 16px;
    color: #343a40;
}

.nav-item a:hover {
    color: var(--red-stde);
}

.btn-90 {
    color: #fff;
    border-radius: 100px;
    background-color: var(--red-stde);
    background-image: radial-gradient(93% 87% at 87% 89%, rgba(0, 0, 0, 0.23) 0%, transparent 86.18%), radial-gradient(66% 87% at 26% 20%, rgba(255, 255, 255, 0.41) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 2px 19px 31px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 16px;
  
    border: 0;
  
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  
    cursor: pointer;
}

.login-box-msg{
    font-family: sans-serif;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: calc(1.5em + 0.75rem + 2px);
}

.gray{
    color: #6c6c6c;
}

.dark-gray{
    color: #3D4248;
}

.red{
    color: #A11B20;
}

.btn-stde{
    background-color: #A11B20;
    color: #FFFFFF;
}

.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.bg-success {
    background-color: #28a745;
}
.bg-danger {
    background-color: #dc3545;
}