body {
    font-family: Arial, sans-serif;
    background-color: #2e307a;
    color: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    text-align: center;
    padding: 20px 10px;
    background-color: #3E4095;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
}

h1 {
    font-size: 2.2rem;
    margin: 10px 0;
}

h2 {
    font-size: 1.8rem;
    color: #FFD700;
    margin: 20px 0;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.4rem;
    margin: 10px 0;
    color: #FFFFFF;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.category {
    margin-bottom: 40px;
}
.category h2{
    display: grid;
    gap: 8px;
    grid-template-columns: 30px auto;
}
.category h2 i {
    color: #FFD700;
    font-size: 1.5rem;
}
.listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.listing-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

p {
    margin: 8px 0;
    line-height: 1.5;
}

a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFA500;
    text-decoration: underline;
}

i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #3E4095;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .listings {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .listing-card {
        padding: 15px;
    }
    
    .logo {
        max-width: 150px;
    }
}