/* ==========================================================================
   Sitemap
   ========================================================================== */
.iubello-sitemap {
    padding: 3rem 0;
}

.iubello-sitemap__header {
    text-align: center;
    margin-bottom: 3rem;
}

.iubello-sitemap__header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.iubello-sitemap__header p {
    color: var(--color-gris);
}

.iubello-sitemap__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.iubello-sitemap__section h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-azul);
    color: var(--color-azul);
}

.iubello-sitemap__section ul {
    list-style: none;
}

.iubello-sitemap__section li {
    margin-bottom: 0.5rem;
}

.iubello-sitemap__section a {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    color: var(--color-negro);
    transition: color var(--transition);
}

.iubello-sitemap__section a:hover {
    color: var(--color-azul);
}

.iubello-sitemap__section a::before {
    content: '›';
    color: var(--color-azul);
    font-weight: 700;
}

@media (max-width: 768px) {
    .iubello-sitemap__grid {
        grid-template-columns: 1fr;
    }
}
