/* Concursos List Page Styles */

/* Header Section */
.header-section {
    background-image: url('/lliege_concurso/static/src/img/mulher_no_note.svg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    position: relative;
}

.header-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.btn-meus-concursos {
    background: #1C66AC;
    color: white;
    width: 10px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-meus-concursos:hover {
    background: white;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px #00000033;
}

/* Concursos Section */
.concursos-section {
    width: 100%;
    padding: 5rem 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.concursos-title {
    max-width: 20vw;
    max-height: 20vw;
    display: block;
    margin: 0 auto;
}

.concursos-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.concurso-card {
    box-shadow: 5px 5px 10px 1px #0000003f;
    flex-shrink: 0;
    border: none;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    width: 350px;
}


.concurso-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    min-height: 3rem;
}

.concurso-card .card-text {
    color: #555;
    line-height: 1.6;
}

.description-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.description-link:hover {
    text-decoration: underline;
}

.concurso-card .text-muted {
    color: white ;
    font-size: 0.9rem;
}

.btn-ver-detalhes {
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-ver-detalhes:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.empty-state {
    padding: 5rem 0;
    text-align: center;
}

.empty-state .lead {
    color: #999;
    font-size: 1.5rem;
}

/* Steps Section */
.steps-section {
    background: #1C66AC;
    padding: 5rem 0;
}

.steps-title {
    font-size: 3rem;
    font-weight: bold;
    color: #FCBA43;
    margin-bottom: 1rem;
}

.steps-subtitle {
    font-size: 1.2rem;
    color: white;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1);
}

.step-item h5 {
    color: #FCBA43;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-item p {
    color: #777;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: #343a40;
    color: white;
    padding: 2rem 0;
    margin-top: 5rem;
}

.site-footer p {
    margin: 0;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-section h1 {
        font-size: 2.5rem;
    }
    
    .concursos-title, .steps-title {
        font-size: 2.2rem;
    }
    
    .concurso-card .card-title {
        font-size: 1.3rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .col-md-4 {
        margin-bottom: 2rem;
    }
}

/* Slick Carousel Styles */
.concursos-carousel {
    width: 65%;
    height: 400px;
    overflow: hidden;
    justify-content: center;
    overflow-x: auto;
    padding: 30px;
    display: flex;

    gap: 30px;
}

.concursos-carousel .slick-slide {
    margin: 0 10px;
}

.concursos-carousel .slick-list {
    margin: 0 -10px;
}

.concursos-carousel .slick-prev,
.concursos-carousel .slick-next {
    background: #1C66AC;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 1;
}

.concursos-carousel .slick-prev:before,
.concursos-carousel .slick-next:before {
    color: white;
    font-size: 20px;
}

.concursos-carousel .slick-prev {
    left: -50px;
}

.concursos-carousel .slick-next {
    right: -50px;
}

@media (max-width: 768px) {
    .concursos-carousel .slick-prev {
        left: -30px;
    }

    .concursos-carousel .slick-next {
        right: -30px;
    }
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.concurso-card, .step-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar for better UX (optional) */
::-webkit-scrollbar {
    width: 13px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #007bff;
    border: 2px solid #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

.concurso-lista-botoes {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.btn-ver-detalhes {
    border-radius: 10px;
    color: white;
}

.btn-publi {
    color: #343a40;
    border: 0.5px solid #a1a1a1;
}

.btn_inscrever {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.btn_inscrever:hover {
    color: white;
}