* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-text {
    animation: fadeInUp 1s ease-out;
}

.animate-text-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.pulse {
    animation: pulse 2s infinite;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    line-height: 1.6;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: var(--hero-bg-image, url('../image/3.jpg')) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin: 0;
    padding: 0;
    padding-top: 6rem; /* Espaço para o header fixo */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #e55e00 0%, #cc5300 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(229, 94, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 94, 0, 0.4);
}

.btn:hover::before {
    left: 100%;
}

/* Botões do Hero */
.btn-agendar {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, #7c3aed 0%, #f59e42 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-saiba-mais {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-agendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

.btn-saiba-mais:hover {
    background: white;
    color: #7c3aed;
}

/* Seção de Jogos */
.games-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.games-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.games-section h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
}

.games-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.2rem;
    margin: -1rem 0 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-festas {
    border-radius: 8px !important;
    margin-bottom: 1rem;
    display: inline-block;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.game-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: 0.3s;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
    border: none;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s;
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card-content {
    padding: 2rem;
    background: #fff;
}

.game-card-content h3 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.game-card-content p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Carrossel */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.carousel {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.1);
    margin: 30px 0;
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    padding: 30px;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 calc(25% - 22.5px);
    min-width: calc(25% - 22.5px);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 300px;
    cursor: pointer;
    background: #fff;
    border: 3px solid transparent;
}

.carousel-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: #e74c3c;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6) 60%, transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.carousel-slide:hover .slide-content {
    transform: translateY(0);
}

.slide-content h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.slide-content p {
    font-size: 0.9rem;
    opacity: 0.95;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    backdrop-filter: blur(5px);
}

.carousel-button:hover {
    background: #e74c3c;
    color: white;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.carousel-button.prev {
    left: 25px;
}

.carousel-button.next {
    right: 25px;
}

.carousel-button i {
    font-size: 1.3rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .hero-content p {
        font-size: 1.2em;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-agendar,
    .btn-saiba-mais {
        padding: 12px 30px;
        font-size: 1em;
    }
    
    /* Carrossel responsivo */
    .carousel-container {
        padding: 0 20px;
    }
    
    .carousel {
        border-radius: 15px;
        margin: 20px 0;
    }
    
    .carousel-track {
        gap: 20px;
        padding: 20px;
    }
    
    .carousel-slide {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
        height: 250px;
        border-radius: 15px;
    }
    
    .carousel-slide:hover {
        transform: translateY(-5px);
    }
    
    .slide-content {
        padding: 20px;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6) 40%, transparent);
    }
    
    .slide-content h3 {
        font-size: 1.3rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
    }
    
    .carousel-button.prev {
        left: 10px;
    }
    
    .carousel-button.next {
        right: 10px;
    }
    
    /* Títulos responsivos */
    .games-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin: -0.5rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }
    
    .hero-content p {
        font-size: 1em;
    }
    
    .carousel-slide {
        height: 220px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-content h3 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.8rem;
    }
    
    .games-section h2 {
        font-size: 1.8rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
        height: 280px;
    }
    
    .carousel-container {
        padding: 0 60px;
    }
}

@media (min-width: 1025px) and (max-width: 1400px) {
    .carousel-slide {
        flex: 0 0 calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
        height: 290px;
    }
}

/* Estilos para quando há poucos slides */
.carousel-track.few-slides {
    justify-content: center;
}

.carousel-track.few-slides .carousel-slide {
    flex: 0 0 auto;
    margin: 0 15px;
}

/* Quando há apenas 1-2 slides em desktop */
@media (min-width: 1025px) {
    .carousel-track.few-slides .carousel-slide {
        flex: 0 0 calc(25% - 22.5px);
        min-width: calc(25% - 22.5px);
    }
}

/* Seção de Avaliações - RECRIADA DO ZERO */
.avaliacoes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.avaliacoes-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.8rem;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    display: block;
    width: 100%;
    clear: both;
    float: none;
}

.avaliacoes-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

/* Resumo das Avaliações */
.avaliacoes-resumo {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 40px;
    gap: 30px;
    clear: both;
}

.resumo-principal {
    flex-shrink: 0;
}

.nota-destaque {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    color: white;
    transition: transform 0.3s ease;
    min-width: 200px;
}

.nota-destaque:hover {
    transform: translateY(-3px);
}

.nota-numero {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.estrelas-destaque {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}

.estrelas-destaque .estrela {
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.total-avaliacoes {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}











/* CSS para as páginas de avaliações das lojas */
.avaliacoes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}

.avaliacoes-header {
    text-align: center;
    margin-bottom: 50px;
}

.avaliacoes-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.avaliacoes-header h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin-bottom: 20px;
    font-weight: 600;
}

.avaliacoes-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 5px;
}

.rating input[type="radio"] {
    display: none;
}

.rating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating label:hover,
.rating label:hover ~ label,
.rating input[type="radio"]:checked ~ label {
    color: #ffd700;
    transform: scale(1.1);
}

.btn-submit {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102,126,234,0.4);
}

.media-avaliacoes {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.media-box {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 200px;
}

.media-nota {
    margin-bottom: 15px;
}

.nota {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 10px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.star {
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.3s ease;
}

.star.active {
    color: #ffd700;
}

.total-avaliacoes {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 500;
}

.filtro-avaliacoes {
    margin-bottom: 30px;
}

.filtro-form select {
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filtro-form select:focus {
    outline: none;
    border-color: #667eea;
}



.paginacao {
    text-align: center;
    margin-top: 40px;
}

.paginacao .pagination {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.paginacao .page-item {
    margin: 0;
}

.paginacao .page-link {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.paginacao .page-link:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.paginacao .page-item.active .page-link {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.alert li {
    margin-bottom: 5px;
}

/* Responsividade para páginas de avaliações */
@media (max-width: 768px) {
    .avaliacoes-container {
        padding: 20px 15px;
    }
    
    .avaliacoes-header h1 {
        font-size: 2rem;
    }
    
    .avaliacoes-header h2 {
        font-size: 1.5rem;
    }
    
    .avaliacoes-form {
        padding: 30px 20px;
    }
    
    .avaliacoes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rating label {
        font-size: 1.8rem;
    }
    
    .media-box {
        padding: 25px 20px;
    }
    
    .nota {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .avaliacoes-header h1 {
        font-size: 1.8rem;
    }
    
    .avaliacoes-form {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .rating label {
        font-size: 1.6rem;
    }
}

/* css avaliações */

.avaliacoes-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.avaliacoes-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.avaliacoes-form h2 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
    color: #ffd700;
}

.btn-submit {
    background: #2C1F6E;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
    font-weight: 500;
}

.btn-submit:hover {
    background: #352583;
}

.success-message {
    text-align: center;
    padding: 2rem;
    background: #d4edda;
    color: #155724;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.success-message h2 {
    margin-bottom: 1rem;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.avaliacoes-header {
    text-align: center;
    margin-bottom: 3rem;
}

.avaliacoes-header h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.avaliacoes-header p {
    color: #666;
    font-size: 1.1rem;
}



.media-avaliacoes {
    margin: 2rem 0;
    text-align: center;
}

.media-box {
    display: inline-block;
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.media-nota {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.media-nota .nota {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.media-nota .stars {
    display: flex;
    gap: 0.2rem;
}

.media-nota .stars .star {
    font-size: 1.8rem;
    color: #ddd;
}

.media-nota .stars .star.active {
    color: #ffd700;
}

.total-avaliacoes {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.filtro-avaliacoes {
    margin: 2rem 0;
    text-align: center;
}

.filtro-form select {
    padding: 0.8rem 2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filtro-form select:focus {
    border-color: #007bff;
    outline: none;
}

.paginacao {
    margin-top: 1rem;
    text-align: center;
}

.paginacao nav {
    display: inline-block;
}

.paginacao .pagination {
    display: flex;
    gap: 0.2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.paginacao .page-item {
    display: inline-block;
}

.paginacao .page-link {
    display: block;
    padding: 0.2rem 0.5rem;
    border: 1px solid #2C1F6E;
    border-radius: 3px;
    color: #2C1F6E;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    min-width: 25px;
    text-align: center;
}

.paginacao .page-link:hover {
    background-color: #2C1F6E;
    color: white;
}

.paginacao .page-item.active .page-link {
    background-color: #2C1F6E;
    border-color: #2C1F6E;
    color: white;
}

.paginacao .page-item.disabled .page-link {
    color: #999;
    border-color: #ddd;
    pointer-events: none;
    background-color: #f8f9fa;
}

/* Mostra apenas a página atual e as adjacentes */
.paginacao .page-item:not(.active):not(:first-child):not(:last-child) {
    display: none;
}

/* Ajusta o estilo dos botões de navegação */
.paginacao .page-item:first-child .page-link,
.paginacao .page-item:last-child .page-link {
    padding: 0.2rem 0.4rem;
    min-width: auto;
    font-size: 0.8rem;
}

/* Remove os símbolos de seta */
.paginacao .page-item:first-child .page-link::before,
.paginacao .page-item:last-child .page-link::after {
    content: none;
}