/* BORDA INCLINADA PARA O CARROSSEL - COM EFEITOS */
.borda-inclinada-container {
    position: relative;
    padding: 5px !important;
    border-radius: 1px !important;
    transform: skewX(2deg) skewY(3deg) !important;
    display: inline-block !important;
    width: 100% !important;
    border: none !important;
    box-shadow: none !important;
    z-index: 1;
    /* Remover qualquer fundo do container, pois o gradiente virá do ::before */
    background: transparent !important;
}

/* Gradiente como fundo da borda */
.borda-inclinada-container::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    right: 5px;
    bottom: 2px;
    background: linear-gradient(45deg, #ffff, #0d6efd);
    border-radius: 0px;
    z-index: -1;
    transition: all 0.4s ease;
}

/* Efeito de brilho atrás (blur) */
.borda-inclinada-container::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -1px;
    background: linear-gradient(45deg, #2a2f36, #1f2329);
    border-radius: 0px;
    z-index: -2;
    filter: blur(10px);
    opacity: 0.6;
    transition: all 0.4s ease;
}

/* Efeito hover: muda a direção do gradiente e aumenta o brilho */
.borda-inclinada-container:hover::before {
    background: linear-gradient(225deg, #0d6efd, #ffff);
    transform: skewX(-4deg) skewY(-5deg);
}

.borda-inclinada-container:hover::after {
    opacity: 0.9;
    filter: blur(8px);
}

/* Conteúdo interno */
.borda-inclinada-conteudo {
    background: #191c24 !important;
    border-radius: 0px !important;
    padding: 10px !important;
    transform: skewX(-2deg) skewY(-3deg) !important;
    border: none !important;
    transition: background 0.3s ease;
}

#horarios-wrapper #pageTile {
    font-size: 1.2rem;
    position: relative;
}

#horarios-wrapper #pageTile::after {
    white-space: pre;
    position: absolute;
    left: 0;
    top: 0;
    color: white;
}

#horarios-wrapper #resultadosContainer h3 {
    font-size: 1rem;
}

.dots-carousel {
    position: relative;
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertical */
    gap: 10px;
}

.dot {
    opacity: 50%;
    position: relative;
    /* border: 1px solid white; */
}

.dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
    transform: translateX(0);
}

.dot.active {
    opacity: 100%;
}

.cabecalho {
    background: linear-gradient(to right, rgba(30, 33, 43, 0), rgba(30, 33, 43, 1), rgba(30, 33, 43, 0)) !important;
}

.fix{
    padding: 0 !important;
}

#logo-planifica{
    height: 45px;
}

.hora-carrossel svg{
    width: 20px;
    height: 20px;
}
.hora-carrossel .text-success{
    color: #00d25bb3 !important;
}

.hora-carrossel .text-danger{
    color: #fc424ac2 !important;
}

.btns-controls{
    opacity: 0;
}

#row-btn .btn{
    flex: 1;
}

#row-btn .btn{
    font-size: 12px;
}
#h4-carrosel, #h4-turno{
    font-size: 16px !important;
}
.textocarrosel{
    font-size: 14px !important;
}
.hora-carrossel{
    font-size: 12px !important;
}
.hora-carrossel svg {
    width: 15px;
    height: 15px;
}
#horarios-wrapper #pageTile{
    font-size: 1rem;
}
#logo-planifica{
    height: 35px;
}
