body{
    background-color: #121a29;
    background-image: url(../resources/background.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

section{
    width: 100%;
}

.logo-image{
    max-width: 250px;
    width: 100%;
}

.logo-image-small{
    max-width: 180px;
    width: 100%;
}

.row-section-1-logo{
    padding-top: 5rem;
}

.label-custom {
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
}


.icon-form {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #fdbc4b;
    font-size: 1.2rem;
    z-index: 10;
}

.input-dark {
    background-color: #141c28;
    border: 1px solid #2e3545;
    color: white;
    padding-left: 45px;
    border-radius: 8px;
    height: 48px;
    font-size: 12px;
}

.input-dark:focus {
    background-color: #141c28;
    color: white;
    border-color: #fdbc4b;
    box-shadow: none;
}

.input-dark::placeholder {
    color: #9da2af;
}

.card-login{
    width: 80%;
    background: #141c28;
    border: 1px solid #232323;
    color: white;
}

.custom-btns{
    max-width: 120px;
}

.btn-deactivated {
    background-color: #8a8a8a !important; 
    color: #333 !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important; /* Mostra o ícone de proibido no rato */
    pointer-events: none; /* Garante que não regista cliques no telemóvel */
}

/* ====================================================
   (SECTION 3)
   ==================================================== */

.route-card {
    border: 1px solid rgba(255, 255, 255, 0.2); 
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05) !important;
    cursor: pointer;
    transition: background-color 0.3s;
    min-height: 110px;
}

.route-card:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}


.mask-image {
    opacity: 0.6;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.overflow-auto::-webkit-scrollbar {
    width: 4px;
}
.overflow-auto::-webkit-scrollbar-track {
    background: transparent;
}
.overflow-auto::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

/* Esconder barra de scroll mas manter o funcionamento */
#section-7-container-days::-webkit-scrollbar {
    display: none;
}
#section-7-container-days {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.bg-green{
    background-color: #61ab4e;
}



@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* #################################################################################### */
/* @MEDIAS        
/* #################################################################################### */

/* Tamanho para Tablet (Equivalente ao 'md' do Bootstrap, >= 768px) */
@media (min-width: 768px) {
    .row-section-1-logo{
        padding-top: 5rem;
    }
}

/* Tamanho para Desktop (Equivalente ao 'lg' do Bootstrap, >= 992px) */
@media (min-width: 992px) {
    .row-section-1-logo{
        padding-top: 5rem;
    }
}


